Lines 4-11
Link Here
|
4 |
[%# category: the authorised value category %] |
4 |
[%# category: the authorised value category %] |
5 |
[%# default: the default authorised value to select %] |
5 |
[%# default: the default authorised value to select %] |
6 |
[%# class: the CSS class of the select element %] |
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). %] |
7 |
[%# size: the size to use for the input (generated if the authorised value category does not exist). %] |
8 |
[%# all: add a "All" entry %] |
8 |
[%# all: add a "All" entry %] |
|
|
9 |
[%# empty: add an empty entry %] |
9 |
|
10 |
|
10 |
[% SET avs = AuthorisedValues.GetAuthValueDropbox( category ) %] |
11 |
[% SET avs = AuthorisedValues.GetAuthValueDropbox( category ) %] |
11 |
[% DEFAULT class = '' size = 20 %] |
12 |
[% DEFAULT class = '' size = 20 %] |
Lines 13-18
Link Here
|
13 |
[% IF avs %] |
14 |
[% IF avs %] |
14 |
<select id="[% name | html %]" name="[% name | html %]" class="[% class | html %]" > |
15 |
<select id="[% name | html %]" name="[% name | html %]" class="[% class | html %]" > |
15 |
[% IF all %]<option value="">All</option>[% END %] |
16 |
[% IF all %]<option value="">All</option>[% END %] |
|
|
17 |
[% IF empty %]<option value=""></option>[% END %] |
16 |
[% FOR av IN avs %] |
18 |
[% FOR av IN avs %] |
17 |
[% IF av.authorised_value == default %] |
19 |
[% IF av.authorised_value == default %] |
18 |
<option value="[% av.authorised_value | html %]" selected="selected">[% av.lib | html_entity %]</option> |
20 |
<option value="[% av.authorised_value | html %]" selected="selected">[% av.lib | html_entity %]</option> |