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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cash_registers.tt (-11 / +11 lines)
Lines 159-172 Cash registers › Administration › Koha Link Here
159
               </div>
159
               </div>
160
160
161
               <h1>Cash registers</h1>
161
               <h1>Cash registers</h1>
162
               <h3>Cash registers for <select id="branch_filter" name="branch_filter">
163
                       <option value=""></option>
164
                       [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
165
                   </select>
166
               </h3>
167
168
               [% IF cash_registers.count %]
169
               <div class="page-section">
162
               <div class="page-section">
163
                   <h2>Cash registers for <select id="branch_filter" name="branch_filter">
164
                           <option value=""></option>
165
                           [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
166
                       </select>
167
                   </h2>
168
169
                   [% IF cash_registers.count %]
170
                   <table id="table_cash_registers">
170
                   <table id="table_cash_registers">
171
                       <thead>
171
                       <thead>
172
                           <th>Name</th>
172
                           <th>Name</th>
Lines 205-214 Cash registers &rsaquo; Administration &rsaquo; Koha Link Here
205
                       [% END %]
205
                       [% END %]
206
                       </tbody>
206
                       </tbody>
207
                   </table>
207
                   </table>
208
               </div><!-- /.page-section -->
208
                   [% ELSE %]
209
               [% ELSE %]
209
                   <div class="dialog message">There are no cash registers defined. <a href="/cgi-bin/koha/admin/cash_registers.pl?op=add_form">Start adding cash registers</a>.</div>
210
               <div class="dialog message">There are no cash registers defined. <a href="/cgi-bin/koha/admin/cash_registers.pl?op=add_form">Start adding cash registers</a>.</div>
210
                   [% END # /cash_register.count %]
211
               [% END # /cash_register.count %]
211
               </div>
212
               [% END # /op == 'list' %]
212
               [% END # /op == 'list' %]
213
           </main>
213
           </main>
214
        </div> <!-- /.col-sm-10.col-sm-push-2 -->
214
        </div> <!-- /.col-sm-10.col-sm-push-2 -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt (-2 / +4 lines)
Lines 292-301 Patron attribute types &rsaquo; Administration &rsaquo; Koha Link Here
292
[% END %]
292
[% END %]
293
[% IF ( available_attribute_types ) %]
293
[% IF ( available_attribute_types ) %]
294
    [% FOREACH attribute IN available_attribute_types %]
294
    [% FOREACH attribute IN available_attribute_types %]
295
    <div class="page-section">
295
    [% IF attribute.class %]
296
    [% IF attribute.class %]
296
        <h4>[% attribute.lib | html %]</h4>
297
        <h2>[% attribute.lib | html %]</h2>
298
    [% ELSE %]
299
        <h2>Unclassified types</h2>
297
    [% END %]
300
    [% END %]
298
    <div class="page-section">
299
        <table class="patron_attributes_types" id="patron_attr[% attribute.class | html %]">
301
        <table class="patron_attributes_types" id="patron_attr[% attribute.class | html %]">
300
          <thead>
302
          <thead>
301
            <tr>
303
            <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/restrictions.tt (-2 / +1 lines)
Lines 160-166 Link Here
160
        <a class="btn btn-default" id="newrestriction" href="/cgi-bin/koha/admin/restrictions.pl?op=add_form"><i class="fa fa-plus"></i> New restriction</a>
160
        <a class="btn btn-default" id="newrestriction" href="/cgi-bin/koha/admin/restrictions.pl?op=add_form"><i class="fa fa-plus"></i> New restriction</a>
161
    </div>
161
    </div>
162
162
163
    <h2>Patron restrictions</h2>
163
    <h1>Patron restrictions</h1>
164
    [% IF searchfield %]
164
    [% IF searchfield %]
165
        You Searched for [% searchfield | html %]</span>
165
        You Searched for [% searchfield | html %]</span>
166
    [% END %]
166
    [% END %]
167
- 

Return to bug 32028