blob: 41cb520f51b915fb358a190a26e31d8139e88492 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[%
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; }
.error { color: red; }
.overdue { background-color: #ffcccc; }
select { width: auto; }
</style>
<h1 style="clear:both;">[% title %]</h1>
|