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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/automatic_item_modification_by_age.tt (+3 lines)
Lines 216-221 Link Here
216
        [% ELSIF rules %]
216
        [% ELSIF rules %]
217
            <div>
217
            <div>
218
                <h4>List of rules</h4>
218
                <h4>List of rules</h4>
219
220
                <div class="page-section">
219
                    <table id="rulest">
221
                    <table id="rulest">
220
                        <thead>
222
                        <thead>
221
                          <tr>
223
                          <tr>
Lines 265-270 Link Here
265
                            [% END %]
267
                            [% END %]
266
                        </tbody>
268
                        </tbody>
267
                    </table>
269
                    </table>
270
                </div> <!-- /.page-section -->
268
            </div>
271
            </div>
269
        [% ELSE %]
272
        [% ELSE %]
270
            <div class="dialog message">
273
            <div class="dialog message">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt (-22 / +24 lines)
Lines 182-211 Link Here
182
                            Due dates have been modified!
182
                            Due dates have been modified!
183
                        </div>
183
                        </div>
184
184
185
                        <table id="checkouts_result">
185
                        <div class="page-section">
186
                            <thead>
186
                            <table id="checkouts_result">
187
                                <tr>
187
                                <thead>
188
                                    <th>Due date</th>
189
                                    <th>Title</th>
190
                                    <th>Item type</th>
191
                                    <th>Home library</th>
192
                                    <th>Checked out on</th>
193
                                    <th>Checked out from</th>
194
                                </tr>
195
                            </thead>
196
                            <tbody>
197
                                [% FOR checkout IN checkouts %]
198
                                    <tr>
188
                                    <tr>
199
                                        <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
189
                                        <th>Due date</th>
200
                                        <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
190
                                        <th>Title</th>
201
                                        <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
191
                                        <th>Item type</th>
202
                                        <td>[% checkout.item.home_branch.branchname | html %]</td>
192
                                        <th>Home library</th>
203
                                        <td>[% checkout.issuedate | $KohaDates %]</td>
193
                                        <th>Checked out on</th>
204
                                        <td>[% Branches.GetName( checkout.branchcode ) | html %]</td>
194
                                        <th>Checked out from</th>
205
                                    </tr>
195
                                    </tr>
206
                                [% END %]
196
                                </thead>
207
                            </tbody>
197
                                <tbody>
208
                        </table> <!-- /#checkouts_result -->
198
                                    [% FOR checkout IN checkouts %]
199
                                        <tr>
200
                                            <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
201
                                            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
202
                                            <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
203
                                            <td>[% checkout.item.home_branch.branchname | html %]</td>
204
                                            <td>[% checkout.issuedate | $KohaDates %]</td>
205
                                            <td>[% Branches.GetName( checkout.branchcode ) | html %]</td>
206
                                        </tr>
207
                                    [% END %]
208
                                </tbody>
209
                            </table> <!-- /#checkouts_result -->
210
                        </div> <!-- /.page-section -->
209
                    [% END %]
211
                    [% END %]
210
                </main>
212
                </main>
211
            </div> <!-- /.col-sm-10.col-sm-push-2 -->
213
            </div> <!-- /.col-sm-10.col-sm-push-2 -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-12 / +13 lines)
Lines 106-122 Link Here
106
[% IF op == 'list' %]
106
[% IF op == 'list' %]
107
    <h1>Quotes</h1>
107
    <h1>Quotes</h1>
108
    [% IF quotes_count > 0 %]
108
    [% IF quotes_count > 0 %]
109
        <table id="quotes">
109
        <div class="page-section">
110
            <thead>
110
            <table id="quotes">
111
                <tr>
111
                <thead>
112
                    <th>ID</th>
112
                    <tr>
113
                    <th>Source</th>
113
                        <th>ID</th>
114
                    <th>Text</th>
114
                        <th>Source</th>
115
                    <th>Last display</th>
115
                        <th>Text</th>
116
                    <th data-class-name="actions" class="noExport">Actions</th>
116
                        <th>Last display</th>
117
                </tr>
117
                        <th data-class-name="actions" class="noExport">Actions</th>
118
            </thead>
118
                    </tr>
119
        </table>
119
                </thead>
120
            </table>
121
        </div> <!-- /.page-section -->
120
    [% ELSE %]
122
    [% ELSE %]
121
        <div class="dialog message">There are no quotes defined. <a href="/cgi-bin/koha/tools/quotes.pl?op=add_form">Start defining quotes</a>.</div>
123
        <div class="dialog message">There are no quotes defined. <a href="/cgi-bin/koha/tools/quotes.pl?op=add_form">Start defining quotes</a>.</div>
122
    [% END %]
124
    [% END %]
123
- 

Return to bug 32632