diff options
Diffstat (limited to 'templates/web/zurich/admin/header.html')
-rw-r--r-- | templates/web/zurich/admin/header.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/web/zurich/admin/header.html b/templates/web/zurich/admin/header.html new file mode 100644 index 000000000..281b1de23 --- /dev/null +++ b/templates/web/zurich/admin/header.html @@ -0,0 +1,34 @@ +[% + SET bodyclass = bodyclass || 'fullwidthpage'; + INCLUDE 'header.html' admin = 1, bodyclass = bodyclass _ ' admin'; + + states = { + 'unconfirmed' = loc('Submitted'), + 'confirmed' = loc('Open'), + 'in progress' = loc('In progress'), + 'planned' = loc('Planned'), + 'fixed - council' = loc('Closed'), + 'hidden' = loc('Hidden'), + 'closed' = loc('Closed'), + } +%] +<style type="text/css"> + .adminhidden { color: #666666; } + .admininternal { background-color: #eeeeff; } + .active { background-color: #ffffee; cursor: pointer; } + .error { color: red; } + .overdue { background-color: #ffcccc; } + select { width: auto; } + #fms_pan_zoom { top: 13em !important; } +</style> +<script> +$(function(){ + $('.row-link').hover(function(){ + $(this).toggleClass("active"); + }).click(function(){ + window.location = this.getElementsByTagName('a')[0]; + }).find('td:last').hide(); + $('th.edit').hide(); +}); +</script> + |