diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/zurich/admin/header.html | 9 | ||||
-rw-r--r-- | templates/web/zurich/admin/problem_row.html | 5 |
2 files changed, 8 insertions, 6 deletions
diff --git a/templates/web/zurich/admin/header.html b/templates/web/zurich/admin/header.html index ce252beb4..72472492a 100644 --- a/templates/web/zurich/admin/header.html +++ b/templates/web/zurich/admin/header.html @@ -13,11 +13,10 @@ } %] <style type="text/css"> -dt { clear: left; float: left; font-weight: bold; } -dd { margin-left: 8em; } -.adminhidden { color: #666666; } -.error { color: red; } -select { width: auto; } + .adminhidden { color: #666666; } + .error { color: red; } + .overdue { color: #660000; } + select { width: auto; } </style> <h1 style="clear:both;">[% title %]</h1> diff --git a/templates/web/zurich/admin/problem_row.html b/templates/web/zurich/admin/problem_row.html index 176f1a1a6..617490232 100644 --- a/templates/web/zurich/admin/problem_row.html +++ b/templates/web/zurich/admin/problem_row.html @@ -4,7 +4,10 @@ [% NEXT IF admin_type == 'sdm' AND p_body.id != body.id %] [% NEXT IF admin_type == 'dm' AND p_body.id != body.id AND p_body.parent.id != body.id %] [% END %] - <tr[% ' class="adminhidden"' IF problem.state == 'hidden' %]> + <tr[% + ' class="adminhidden"' IF problem.state == 'hidden'; + ' class="overdue"' IF c.cobrand.overdue( problem ); + %]> <td class="record-id">[%- IF problem.is_visible -%] <a href="[% c.uri_for_email( '/report', problem.id ) %]">[% problem.id %]</a> [%- ELSE %] |