diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-07-28 17:22:29 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-07-28 17:22:29 +0100 |
commit | f252bf15181d06a664ff0f77dedac9f1899c933d (patch) | |
tree | 5dcc2338efd5680c60f6be036a9e3e582dd8de9f | |
parent | ecb7a3525ad2afaba7a524922a9de26a3531eb37 (diff) |
Add time tooltips to All Reports table headings.
-rwxr-xr-x | templates/web/base/reports/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/web/base/reports/index.html b/templates/web/base/reports/index.html index 837d99271..4b8c27b92 100755 --- a/templates/web/base/reports/index.html +++ b/templates/web/base/reports/index.html @@ -18,11 +18,11 @@ <thead> <tr> <th class="title">[% loc('Name') %]</th> -<th class="data">[% loc('New <br>problems') %]</th> -<th class="data">[% loc('Older <br>problems') %]</th> -<th class="data">[% loc('Old / unknown <br>problems') %]</th> -<th class="data">[% loc('Recently <br>fixed') %]</th> -<th class="data">[% loc('Older <br>fixed') %]</th> +<th title="[% loc('Reported within the last four weeks') %]" class="data">[% loc('New <br>problems') %]</th> +<th title="[% loc('Open for more than four weeks, with an update within the past eight weeks') %]" class="data">[% loc('Older <br>problems') %]</th> +<th title="[% loc('Open, but not had any update in eight weeks') %]" class="data">[% loc('Old / unknown <br>problems') %]</th> +<th title="[% loc('Marked fixed/closed in the past eight weeks') %]" class="data">[% loc('Recently <br>fixed') %]</th> +<th title="[% loc('Marked fixed/closed more than eight weeks ago') %]" class="data">[% loc('Older <br>fixed') %]</th> </tr> </thead> |