diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-24 18:05:00 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-29 09:31:31 +0100 |
commit | fb792c07ba49c15c1c9c4b9ae6372a7e33dba0ba (patch) | |
tree | 854c75305a9ab89ed11a6b6e2d86086bb167fc99 /templates/web/base/admin/header.html | |
parent | 19241c52172aec0c797a00b35a090e28f7858e1d (diff) |
Improve admin report edit page.
Show map, break into two columns, fix display of sent time after
clicking "Mark as sent", tidy up labels.
Diffstat (limited to 'templates/web/base/admin/header.html')
-rw-r--r-- | templates/web/base/admin/header.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/web/base/admin/header.html b/templates/web/base/admin/header.html index 145bb986d..ddaa4aa44 100644 --- a/templates/web/base/admin/header.html +++ b/templates/web/base/admin/header.html @@ -1,16 +1,14 @@ -[% INCLUDE 'header.html' admin = 1, bodyclass = 'fullwidthpage admin' %] +[% + SET bodyclass = bodyclass || 'fullwidthpage'; + INCLUDE 'header.html' admin = 1, bodyclass = bodyclass _ ' admin'; +%] <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; } +.sm { font-size: smaller; } </style> - <p><strong>[% tprintf(loc('%s admin:', "%s here is the site name"), site_name) %]</strong> - [%- FOREACH link IN allowed_links %] - <a href="[% c.uri_for( link ) %]">[% allowed_pages.$link.0 %]</a> - [% IF NOT loop.last %]|[% END %] - [% END %]</p> - - <h1>[% title %]</h1> +[% INCLUDE 'admin/navigation.html' UNLESS bodyclass.match('mappage') %] |