1 [% USE AuthorisedValues %]
3 [%# name: the name of the select element %]
4 [%# category: the authorised value category %]
5 [%# default: the default authorised value to select %]
6 [%# class: the CSS class of the select element %]
7 [%# size: the size to use for the input (generated if the authorised value category does not exist). %]
8 [%# all: add a "All" entry %]
10 [% SET avs = AuthorisedValues.GetAuthValueDropbox( category ) %]
11 [% DEFAULT class = '' size = 20 %]
14 <select id="[% name %]" name="[% name %]" class="[% class %]" >
15 [% IF all %]<option value="">All</option>[% END %]
17 [% IF av.authorised_value == default %]
18 <option value="[% av.authorised_value %]" selected="selected">[% av.lib | html_entity %]</option>
20 <option value="[% av.authorised_value %]">[% av.lib | html_entity %]</option>
25 <input type="text" id="[% name %]" name="[% name %]" size="[% size %]" value="[% default | html_entity %]" class="[% class %]" />