diff options
author | Struan Donald <struan@exo.org.uk> | 2012-12-21 11:23:03 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-12-21 11:23:03 +0000 |
commit | e2c1643e35241de304246fad740116469eceebf3 (patch) | |
tree | ec5b11044e475943753714a7874562e9c89668a7 | |
parent | b36b61ec63020a758e3a72550ac3ced5b13747bd (diff) |
add css classes for better table readability
-rw-r--r-- | templates/web/seesomething/admin/stats.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/web/seesomething/admin/stats.html b/templates/web/seesomething/admin/stats.html index 2ddb3e665..c49d7e2ec 100644 --- a/templates/web/seesomething/admin/stats.html +++ b/templates/web/seesomething/admin/stats.html @@ -17,7 +17,7 @@ <input type="submit" name="getcounts" size="30" id="getcounts" value="Look Up" /> </form> -<table> +<table class="admin-report"> <thead> <tr> <th>ID</th> @@ -33,8 +33,8 @@ <td>[% report.id %]</td> <td>[% report.detail %]</td> <td>[% report.category %]</td> - <td>[% report.subcategory %]</td> - <td>[% PROCESS format_time time=report.confirmed %]</td> + <td class="nowrap">[% report.subcategory %]</td> + <td class="nowrap">[% PROCESS format_time time=report.confirmed %]</td> </tr> [%- END %] </tbody> |