Lines 143-152
Link Here
|
143 |
<li><span class="label">Category code: </span>[% categorycode |html %] |
143 |
<li><span class="label">Category code: </span>[% categorycode |html %] |
144 |
<input type="hidden" name="categorycode" value="[% categorycode |html %]" /><input type="hidden" name="is_a_modif" value="1" /></li> |
144 |
<input type="hidden" name="categorycode" value="[% categorycode |html %]" /><input type="hidden" name="is_a_modif" value="1" /></li> |
145 |
[% ELSE %] |
145 |
[% ELSE %] |
146 |
<li><label for="categorycode">Category code: </label> <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" onblur="toUC(this)" /></li> |
146 |
<li><label for="categorycode" class="required">Category code: </label> <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" onblur="toUC(this)" /></li> |
147 |
[% END %] |
147 |
[% END %] |
148 |
<li><label for="description">Description: </label> <input type="text" name="description" id="description" size="40" maxlength="80" value="[% description |html %]" /></li> |
148 |
<li><label for="description" class="required">Description: </label> <input type="text" name="description" id="description" size="40" maxlength="80" value="[% description |html %]" /></li> |
149 |
<li><label for="enrolmentperiod">Enrollment period: </label> |
149 |
<li><label for="enrolmentperiod" class="required">Enrollment period: </label> |
150 |
<fieldset> |
150 |
<fieldset> |
151 |
<legend>Choose one</legend> |
151 |
<legend>Choose one</legend> |
152 |
<ol> |
152 |
<ol> |
Lines 181-187
Link Here
|
181 |
[% END %] |
181 |
[% END %] |
182 |
</select></li> |
182 |
</select></li> |
183 |
<li><label for="reservefee">Hold fee: </label><input type="text" name="reservefee" id="reservefee" size="6" value="[% reservefee %]" /></li> |
183 |
<li><label for="reservefee">Hold fee: </label><input type="text" name="reservefee" id="reservefee" size="6" value="[% reservefee %]" /></li> |
184 |
<li><label for="category_type">Category type: </label> <select name="category_type" id="category_type"> |
184 |
<li><label for="category_type" class="required">Category type: </label> <select name="category_type" id="category_type"> |
185 |
[% IF ( type_n ) %]<option value="" selected="selected">Select a category type</option>[% ELSE %]<option value="">Select a category type</option>[% END %] |
185 |
[% IF ( type_n ) %]<option value="" selected="selected">Select a category type</option>[% ELSE %]<option value="">Select a category type</option>[% END %] |
186 |
[% IF ( type_A ) %]<option value="A" selected="selected">Adult</option>[% ELSE %]<option value="A">Adult</option>[% END %] |
186 |
[% IF ( type_A ) %]<option value="A" selected="selected">Adult</option>[% ELSE %]<option value="A">Adult</option>[% END %] |
187 |
[% IF ( type_C ) %]<option value="C" selected="selected">Child</option>[% ELSE %]<option value="C">Child</option>[% END %] |
187 |
[% IF ( type_C ) %]<option value="C" selected="selected">Child</option>[% ELSE %]<option value="C">Child</option>[% END %] |
188 |
- |
|
|