made listview do paging and ordering and all sorts of stupid shit. nobody is welcome...
[catagits/Reaction.git] / share / skin / default / layout / field / password.tt
CommitLineData
5a1a893e 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="password" 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 -->
6ab43711 13[% content_str = GET content; %]
14[% IF content_str.length; %]
15 <label> [% content_str | html %]: </label>
16[% END; %]
5a1a893e 17
18=for layout message
19
20<!-- This conditional goes away when mst comes up with something better -->
6ab43711 21[% content_str = GET content; %]
22[% IF content_str.length; %]
23 <span> [% content_str | html %] </span> <br />
5a1a893e 24[% END %]
25
6ab43711 26=cut