--- /dev/null
+[%
+
+PROCESS inputs;
+
+WRAPPER select name=input_prefix _ ":target";
+ count = 1;
+ WHILE count < 37;
+ INCLUDE option value=count selected=(count == 1 ? 1 : 0);
+ count = count + 1;
+ END;
+END;
+
+' months before runtime<br/>Compared to ';
+
+WRAPPER select name=input_prefix _ ":compare";
+ count = 1;
+ WHILE count < 37;
+ INCLUDE option value=count selected=(count == 12 ? 1 : 0);
+ count = count + 1;
+ END;
+END;
+' months before target';
+
+%]
-'Week of year: ';
-WRAPPER select name=input_prefix;
+USE date;
+USE start = DateTime(now = 1);
+
+'Year: ';
+INCLUDE name=input_prefix _ ':year' text size=4 value=start.year;
+
+
+'<br/>Week of year: ';
+WRAPPER select name=input_prefix _ ':week';
INCLUDE option value=count;
count = count + 1;
END;
INCLUDE option value=count;
count = count + 1;
END;