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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-10 / +9 lines)
Lines 290-297 $(document).ready(function() { Link Here
290
[% END # hide fieldset %]
290
[% END # hide fieldset %]
291
291
292
[% IF ( showguarantor ) %]<input type="hidden" id="guarantorid" name="guarantorid"   value="[% guarantorid %]" />
292
[% IF ( showguarantor ) %]<input type="hidden" id="guarantorid" name="guarantorid"   value="[% guarantorid %]" />
293
    <fieldset class="rows">
293
    <fieldset id="memberentry_guarantor" class="rows">
294
        <legend>Guarantor information</legend>
294
        <legend id="guarantor_lgd">Guarantor information</legend>
295
        <ol>
295
        <ol>
296
[% IF ( P ) %]
296
[% IF ( P ) %]
297
	        [% IF ( guarantorid ) %]
297
	        [% IF ( guarantorid ) %]
Lines 808-815 $(document).ready(function() { Link Here
808
        [% END # hide fieldset %][% END %]
808
        [% END # hide fieldset %][% END %]
809
		<!--this zones are not necessary in modif mode -->
809
		<!--this zones are not necessary in modif mode -->
810
        [% UNLESS ( opadd || opduplicate ) %]
810
        [% UNLESS ( opadd || opduplicate ) %]
811
		<fieldset class="rows">
811
        <fieldset class="rows" id="memberentry_account_flags">
812
            <legend>Patron account flags</legend>
812
            <legend id="account_flags_lgd">Patron account flags</legend>
813
			<ol class="radio">
813
			<ol class="radio">
814
			[% FOREACH flagloo IN flagloop %]
814
			[% FOREACH flagloo IN flagloop %]
815
				<li><label class="radio" for="yes[% flagloo.name %]">
815
				<li><label class="radio" for="yes[% flagloo.name %]">
Lines 839-846 $(document).ready(function() { Link Here
839
			</ol>
839
			</ol>
840
			</fieldset>
840
			</fieldset>
841
841
842
              <fieldset class="rows">
842
              <fieldset class="rows" id="memberentry_restrictions">
843
                <legend>Patron restrictions</legend>
843
                <legend id="restrictions_lgd">Patron restrictions</legend>
844
844
845
                [% IF ( debarments ) %]
845
                [% IF ( debarments ) %]
846
                    <table>
846
                    <table>
Lines 878-884 $(document).ready(function() { Link Here
878
                    <p><a href="#" id="add_manual_restriction">Add manual restriction</a></p>
878
                    <p><a href="#" id="add_manual_restriction">Add manual restriction</a></p>
879
                    <fieldset id="manual_restriction_form">
879
                    <fieldset id="manual_restriction_form">
880
                        <input type="hidden" id="add_debarment" name="add_debarment" value="0" />
880
                        <input type="hidden" id="add_debarment" name="add_debarment" value="0" />
881
                        <legend>Add manual restriction</legend>
881
                        <legend id="manual_restriction_lgd">Add manual restriction</legend>
882
                        <ol>
882
                        <ol>
883
                            <li><label for="debarred_comment">Comment: </label><input type="text" id="debarred_comment" name="debarred_comment" onchange="$('#add_debarment').val(1);" /></li>
883
                            <li><label for="debarred_comment">Comment: </label><input type="text" id="debarred_comment" name="debarred_comment" onchange="$('#add_debarment').val(1);" /></li>
884
                            <li><label for="debarred_expiration">Expiration: </label><input name="debarred_expiration" id="debarred_expiration" size="10" readonly="readonly" value="" class="datepicker" onchange="$('#add_debarment').val(1);" />
884
                            <li><label for="debarred_expiration">Expiration: </label><input name="debarred_expiration" id="debarred_expiration" size="10" readonly="readonly" value="" class="datepicker" onchange="$('#add_debarment').val(1);" />
Lines 897-908 $(document).ready(function() { Link Here
897
897
898
[% IF ( step_4 ) %][% IF ( ExtendedPatronAttributes ) %][% UNLESS ( no_patron_attribute_types ) %]
898
[% IF ( step_4 ) %][% IF ( ExtendedPatronAttributes ) %][% UNLESS ( no_patron_attribute_types ) %]
899
  <fieldset class="rows" id="memberentry_patron_attributes">
899
  <fieldset class="rows" id="memberentry_patron_attributes">
900
    <legend>Additional attributes and identifiers</legend>
900
    <legend id="patron_attributes_lgd">Additional attributes and identifiers</legend>
901
    <input type="hidden" name="setting_extended_patron_attributes" value="1" />
901
    <input type="hidden" name="setting_extended_patron_attributes" value="1" />
902
    [% FOREACH pa_loo IN patron_attributes %]
902
    [% FOREACH pa_loo IN patron_attributes %]
903
        [% IF pa_loo.class %]
903
        [% IF pa_loo.class %]
904
            <fieldset id="aai_[% pa_loo.class %]">
904
            <fieldset id="aai_[% pa_loo.class %]">
905
            <legend>[% pa_loo.lib %]</legend>
905
            <legend id="[% pa_loo.class %]_lgd">[% pa_loo.lib %]</legend>
906
        [% END %]
906
        [% END %]
907
        <ol class="attributes_table">
907
        <ol class="attributes_table">
908
            [% FOREACH patron_attribute IN pa_loo.items %]
908
            [% FOREACH patron_attribute IN pa_loo.items %]
909
- 

Return to bug 16159