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

(-)a/admin/branches.pl (+1 lines)
Lines 74-79 if ( $op eq 'add_form' ) { Link Here
74
      branchnotes
74
      branchnotes
75
      opac_info
75
      opac_info
76
      marcorgcode
76
      marcorgcode
77
      pickup_location
77
    );
78
    );
78
    my $is_a_modif = $input->param('is_a_modif');
79
    my $is_a_modif = $input->param('is_a_modif');
79
80
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-1 / +3 lines)
Lines 146-151 Link Here
146
                <li><label for="branchip">IP: </label><input type="text" name="branchip" id="branchip"  size="15" maxlength="15" value="[% library.branchip | html %]" /> <span class="hint">Can be entered as a single IP, or a subnet such as 192.168.1.*</span></li>
146
                <li><label for="branchip">IP: </label><input type="text" name="branchip" id="branchip"  size="15" maxlength="15" value="[% library.branchip | html %]" /> <span class="hint">Can be entered as a single IP, or a subnet such as 192.168.1.*</span></li>
147
                <li><label for="marcorgccode">MARC organization code</label> <input type="text" name="marcorgcode" id="marcorgcode" size="16" value="[% library.marcorgcode | html %]" /> <span class="hint">If not filled in defaults to system preference MARCOrgCode. You can obtain your code from <a href="http://www.loc.gov/marc/organizations/orgshome.html" target="_blank">Library of Congress</a>.</span>
147
                <li><label for="marcorgccode">MARC organization code</label> <input type="text" name="marcorgcode" id="marcorgcode" size="16" value="[% library.marcorgcode | html %]" /> <span class="hint">If not filled in defaults to system preference MARCOrgCode. You can obtain your code from <a href="http://www.loc.gov/marc/organizations/orgshome.html" target="_blank">Library of Congress</a>.</span>
148
                <li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes | html %]" /></li>
148
                <li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes | html %]" /></li>
149
                <li><label for="pickup_location">Pickup location: </label><select name="pickup_location" id="pickup_location"><option value="1" [% IF library.pickup_location %]selected[% END %]>Yes</option><option value="0" [% IF !library.pickup_location %]selected[% END %]>No</option></select></li>
149
            </ol>
150
            </ol>
150
        </fieldset>
151
        </fieldset>
151
        <fieldset class="action">
152
        <fieldset class="action">
Lines 181-186 Link Here
181
                    <th>Address</th>
182
                    <th>Address</th>
182
                    <th>MARC organization code</th>
183
                    <th>MARC organization code</th>
183
                    <th>IP</th>
184
                    <th>IP</th>
185
                    <th>Pickup location</th>
184
                    <th>Actions</th>
186
                    <th>Actions</th>
185
                </tr>
187
                </tr>
186
            </thead>
188
            </thead>
Lines 218-223 Link Here
218
                        </td>
220
                        </td>
219
                        <td>[% library.marcorgcode | html %]</td>
221
                        <td>[% library.marcorgcode | html %]</td>
220
                        <td>[% library.branchip | html %]</td>
222
                        <td>[% library.branchip | html %]</td>
223
                        <td>[% IF library.pickup_location %]Yes[% ELSE %]No[% END %]</td>
221
                        <td class="actions">
224
                        <td class="actions">
222
                            <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=add_form&amp;branchcode=[% library.branchcode |uri %]"><i class="fa fa-pencil"></i> Edit</a>
225
                            <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=add_form&amp;branchcode=[% library.branchcode |uri %]"><i class="fa fa-pencil"></i> Edit</a>
223
                            <form action="/cgi-bin/koha/admin/branches.pl" method="post">
226
                            <form action="/cgi-bin/koha/admin/branches.pl" method="post">
224
- 

Return to bug 7534