Roundup Tracker - Issues

Message8011

Author rouilj
Recipients rouilj
Date 2024-04-23.23:32:22
Message-id <1713915142.64.0.215430126616.issue2551341@roundup.psfhosted.org>
In-reply-to
It looks like colspan for the group headers is derived from count(@columns).
If @colums is missing it becomes 0, but the backend code displays all columns
of the issue class.

Changing:


  <th tal:attributes="colspan python:len(request.columns)" class="group">

to an arbitrary large number:

  <th tal:attributes="colspan python:len(request.columns) or 100" class="group">

solves the issue. I don't think it has any bad effects.

Comments?
History
Date User Action Args
2024-04-23 23:32:22rouiljsetrecipients: + rouilj
2024-04-23 23:32:22rouiljsetmessageid: <1713915142.64.0.215430126616.issue2551341@roundup.psfhosted.org>
2024-04-23 23:32:22rouiljlinkissue2551341 messages
2024-04-23 23:32:22rouiljcreate