]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/reporter/templates/widgets/specific-timerange.year
big ol reporter cleanup for the meeting
[Evergreen.git] / Open-ILS / src / reporter / templates / widgets / specific-timerange.year
1 [%
2
3 USE date;
4 USE start = DateTime(now = 1);
5
6 PROCESS inputs;
7
8 BLOCK editor;
9
10 WRAPPER html/table ;
11
12         WRAPPER html/row;
13                 INCLUDE html/cell content='Year';
14         END;
15
16         WRAPPER html/row;
17                 WRAPPER html/cell;
18                         INCLUDE text name=input_prefix size=4 value=(current_value ? current_value : start.year);
19                 END;
20         END;
21
22 END;
23 END;
24
25 BLOCK display;
26 current_value;
27 END;
28
29 %]