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