It is starting to look like this may actually work after all. Listview is the only...
[catagits/Reaction.git] / share / skin / default / layout / field / date_time
1 =for layout widget
2
3 [% label %] [% field %] [% message %]
4
5 =for layout field
6
7 <!-- We need a replacement for process_attrs -->
8 <input type="text" name="[% name | html %]" id="[% id | html%]" value="[% content | html %]" />
9
10 =for layout label
11
12 <!-- This conditional goes away when mst comes up with something better -->
13 [% content_str = GET content; %]
14 [% IF content_str.length; %]
15   <label> [% content_str | html %]: </label>
16 [% END; %]
17
18 =for layout message
19
20 <!-- This conditional goes away when mst comes up with something better -->
21 [% content_str = GET content; %]
22 [% IF content_str.length; %]
23   <span> [% content_str | html %] </span> <br />
24 [% END %]
25
26 =cut