unstable switchover before template renaming. added searchpath for widgets trying...
[catagits/Reaction.git] / share / skin / default / layout / field / text.tt
1 =for layout widget
2
3 [% label %] [% field %] [% message %]
4
5 =for layout field
6
7 <!-- We need a replacement for process_attrs -->
8 <textarea name="[% name | html %]" id="[% id | html %]">
9   [% content | html %]
10 </textarea>
11
12 =for layout label
13
14 <!-- This conditional goes away when mst comes up with something better -->
15 [% content_str = GET content; %]
16 [% IF content_str.length; %]
17   <label> [% content_str | html %]: </label>
18 [% END; %]
19
20 =for layout message
21
22 <!-- This conditional goes away when mst comes up with something better -->
23 [% content_str = GET content; %]
24 [% IF content_str.length; %]
25   <span> [% content_str | html %] </span> <br />
26 [% END %]
27
28 =cut