]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/reporter/templates/widgets/relative-timerange.month
big ol reporter cleanup for the meeting
[Evergreen.git] / Open-ILS / src / reporter / templates / widgets / relative-timerange.month
1 [%
2
3 PROCESS inputs;
4
5 BLOCK editor;
6
7 WRAPPER select name=input_prefix;
8         count = 1;
9         IF current_value;
10                 def = current_value;
11         END;
12         WHILE count < 37;
13                 INCLUDE option value=count selected=(count == def ? 1 : 0);
14                 count = count + 1;
15         END;
16 END;
17 ' months before runtime';
18 END;
19
20 BLOCK display;
21 current_value _ ' months before runtime';
22 END;
23
24 %]