View | Details | Raw Unified | Return to bug 7517
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-11 / +10 lines)
Lines 176-182 Link Here
176
[% IF step == 4 || step == 5 || step == 6 || step == 2 || step == 1 %]
176
[% IF step == 4 || step == 5 || step == 6 || step == 2 || step == 1 %]
177
[%# Only put the cardnumber if we arent showing it in the form later %]
177
[%# Only put the cardnumber if we arent showing it in the form later %]
178
[% IF cardnumber %]
178
[% IF cardnumber %]
179
<input type="hidden" name="cardnumber" value="[% cardnumber %]">
179
<input type="hidden" name="cardnumber" value="[% cardnumber %]" />
180
[% END %]
180
[% END %]
181
[% END %]
181
[% END %]
182
[% END %]
182
[% END %]
Lines 992-1003 Link Here
992
        [% FOREACH typeloo IN typeloop %]
992
        [% FOREACH typeloo IN typeloop %]
993
			[% FOREACH categoryloo IN typeloo.categoryloop %]
993
			[% FOREACH categoryloo IN typeloo.categoryloop %]
994
				[% IF ( loop.first ) %]
994
				[% IF ( loop.first ) %]
995
					[% IF ( categoryloo.typename_C ) %]<optgroup label="Child">[% END %]
995
					[% IF ( typeloo.typename_C ) %]<optgroup label="Child">[% END %]
996
					[% IF ( categoryloo.typename_A ) %]<optgroup label="Adult">[% END %]
996
					[% IF ( typeloo.typename_A ) %]<optgroup label="Adult">[% END %]
997
					[% IF ( categoryloo.typename_S ) %]<optgroup label="Staff">[% END %]
997
					[% IF ( typeloo.typename_S ) %]<optgroup label="Staff">[% END %]
998
					[% IF ( categoryloo.typename_I ) %]<optgroup label="Organization">[% END %]
998
					[% IF ( typeloo.typename_I ) %]<optgroup label="Organization">[% END %]
999
					[% IF ( categoryloo.typename_P ) %]<optgroup label="Professional">[% END %]
999
					[% IF ( typeloo.typename_P ) %]<optgroup label="Professional">[% END %]
1000
					[% IF ( categoryloo.typename_X ) %]<optgroup label="Statistical">[% END %]
1000
					[% IF ( typeloo.typename_X ) %]<optgroup label="Statistical">[% END %]
1001
			    [% END %]
1001
			    [% END %]
1002
				[% IF ( categoryloo.categorycodeselected ) %]
1002
				[% IF ( categoryloo.categorycodeselected ) %]
1003
               <option value="[% categoryloo.categorycode %]" selected="selected">[% categoryloo.categoryname %]</option>
1003
               <option value="[% categoryloo.categorycode %]" selected="selected">[% categoryloo.categoryname %]</option>
Lines 1307-1315 Link Here
1307
				<br />
1307
				<br />
1308
				<label for="datedebarred" class="radio">until:</label> 
1308
				<label for="datedebarred" class="radio">until:</label> 
1309
				[% IF opduplicate %]
1309
				[% IF opduplicate %]
1310
				    <input type="text" name="datedebarred" id="debarred" class="debarred" value="[% datedebarred %]" onclick="this.value=''" />
1310
				    <input type="text" name="datedebarred" id="datedebarred" class="debarred" value="[% datedebarred %]" onclick="this.value=''" />
1311
				[% ELSE %]
1311
				[% ELSE %]
1312
				    <input type="text" name="datedebarred" id="debarred" class="debarred" value="[% datedebarred %]" />
1312
				    <input type="text" name="datedebarred" id="datedebarred" class="debarred" value="[% datedebarred %]" />
1313
				[% END %]
1313
				[% END %]
1314
				<img src="[% themelang %]/lib/calendar/cal.gif" id="debarred_button" alt="Show Calendar" />
1314
				<img src="[% themelang %]/lib/calendar/cal.gif" id="debarred_button" alt="Show Calendar" />
1315
		         <script language="JavaScript" type="text/javascript">
1315
		         <script language="JavaScript" type="text/javascript">
Lines 1326-1332 Link Here
1326
			       [% IF ( opduplicate ) %] 
1326
			       [% IF ( opduplicate ) %] 
1327
			           <textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3" onclick="this.value=''">[% debarredcomment %]</textarea>
1327
			           <textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3" onclick="this.value=''">[% debarredcomment %]</textarea>
1328
			       [% ELSE %]
1328
			       [% ELSE %]
1329
				   <textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3" ">[% debarredcomment %]</textarea> 
1329
				   <textarea id="debarredcomment" name="debarredcomment" cols="55" rows="3">[% debarredcomment %]</textarea> 
1330
			       [% END %]
1330
			       [% END %]
1331
	        </li>
1331
	        </li>
1332
1332
1333
- 

Return to bug 7517