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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt (-14 / +21 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE Branches %]
2
[% USE Branches %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
Lines 59-78 Link Here
59
    <input type="hidden" name="issuelengthcount">
60
    <input type="hidden" name="issuelengthcount">
60
    </li>
61
    </li>
61
62
62
    <li><label for="branchcode">Library:</label>
63
    [% IF Koha.Preference('RenewSerialAddsSuggestion') %]
63
    <select name="branchcode" id="branchcode" style="width: 20em;">
64
        <li>
64
        [% UNLESS ( Independentbranches ) %]
65
            <label for="branchcode">Library:</label>
65
            <option value="">None</option>
66
            <select name="branchcode" id="branchcode" style="width: 20em;">
66
        [% END %]
67
                [% UNLESS ( Independentbranches ) %]
67
        [% IF CAN_user_serials_superserials %]
68
                    <option value="">None</option>
68
            [% PROCESS options_for_libraries libraries => Branches.all(selected => subscription.branchcode) %]
69
                [% END %]
69
        [% END %]
70
                [% IF CAN_user_serials_superserials %]
70
    </select> (select a library)
71
                    [% PROCESS options_for_libraries libraries => Branches.all(selected => subscription.branchcode) %]
71
    </li>
72
                [% END %]
73
            </select> (select a library)
74
        </li>
72
75
73
    <li><label for="note">Note for the librarian that will manage your renewal request: </label>
76
        <li>
74
		<textarea name="note" id="note" rows="5" cols="50"></textarea></li></ol></fieldset>
77
            <label for="note">Note for the librarian that will manage your renewal request: </label>
75
		<fieldset class="action"><input type="submit" value="Submit" class="button" /></fieldset>
78
            <textarea name="note" id="note" rows="5" cols="50"></textarea>
79
        </li>
80
    [% END %]
81
</ol>
82
</fieldset>
83
<fieldset class="action"><input type="submit" value="Submit" class="button" /></fieldset>
76
</form>
84
</form>
77
[% END %]
85
[% END %]
78
86
79
- 

Return to bug 27332