html fixes

This commit is contained in:
Mike McLean 2025-05-30 10:36:09 -04:00 committed by Tomas Kopecek
parent c04784cb14
commit c6e368200e
2 changed files with 7 additions and 7 deletions

View file

@ -7,16 +7,16 @@
Repo request {{ req_id }} not found. Repo request {{ req_id }} not found.
#else #else
<table> <table>
<tr><th>ID</th><td>{{ req.id }}</td><th></tr> <tr><th>ID</th><td>{{ req.id }}</td></tr>
<tr><th>Active</th><td>{{ req.active }}</td><th></tr> <tr><th>Active</th><td>{{ req.active }}</td></tr>
<tr><th>Priority</th><td>{{ req.priority }}</td><th></tr> <tr><th>Priority</th><td>{{ req.priority }}</td></tr>
<tr><th>Tag</th><td><a href="taginfo?tagID={{ req.tag_id }}">{{ req.tag_name }}</a></td></tr> <tr><th>Tag</th><td><a href="taginfo?tagID={{ req.tag_id }}">{{ req.tag_name }}</a></td></tr>
#if req.at_event #if req.at_event
<tr><th>At specific event</th><td>{{ at_event.id }} ({{ util.formatTimeLong(at_event.ts) }})</td><th></tr> <tr><th>At specific event</th><td>{{ at_event.id }} ({{ util.formatTimeLong(at_event.ts) }})</td></tr>
#elif req.min_event #elif req.min_event
<tr><th>Minimum event</th><td>{{ min_event.id }} ({{ util.formatTimeLong(min_event.ts) }})</td><th></tr> <tr><th>Minimum event</th><td>{{ min_event.id }} ({{ util.formatTimeLong(min_event.ts) }})</td></tr>
#else #else
<tr><th>Invalid event</th><td>Unable to determine event for request</td><th></tr> <tr><th>Invalid event</th><td>Unable to determine event for request</td></tr>
#endif #endif
#if req.opts #if req.opts
<th>Options</th><td class="usertext">{{ req.opts | tojson(indent=4) }}</td> <th>Options</th><td class="usertext">{{ req.opts | tojson(indent=4) }}</td>

View file

@ -69,7 +69,7 @@
<td> <td>
<a href="taginfo?tagID={{ req.tag_id }}">{{ req.tag_name }}</a> <a href="taginfo?tagID={{ req.tag_id }}">{{ req.tag_name }}</a>
#if not tag #if not tag
<a href="reporequests?tag={{ req.tag_id }}{{ P('active', 'order') }}" title="Filter by tag"><img src="{{ util.themePath('images/funnel.svg') }}"></a> <a href="reporequests?tag={{ req.tag_id }}{{ P('active', 'order') }}" title="Filter by tag"><img src="{{ util.themePath('images/funnel.svg') }}" alt="^" /></a>
#endif #endif
</td> </td>
#if req.task_id #if req.task_id