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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt (-1 / +1 lines)
Lines 96-102 Link Here
96
                    [% checkout.issuedate |$KohaDates  with_hours => 1 %]
96
                    [% checkout.issuedate |$KohaDates  with_hours => 1 %]
97
                </td>
97
                </td>
98
                <td data-order="[% checkout.date_due | html %]">
98
                <td data-order="[% checkout.date_due | html %]">
99
                    [% checkout.date_due |$KohaDates  with_hours => 1 %]
99
                    [% checkout.date_due | $KohaDates as_due_date => 1 %]
100
                </td>
100
                </td>
101
                <td data-order="[% checkout.returndate | html %]">
101
                <td data-order="[% checkout.returndate | html %]">
102
                    [% checkout.returndate |$KohaDates  with_hours => 1 %]
102
                    [% checkout.returndate |$KohaDates  with_hours => 1 %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt (-3 / +3 lines)
Lines 56-62 Link Here
56
                [% FOREACH overduesloo IN overduesloop %]
56
                [% FOREACH overduesloo IN overduesloop %]
57
                    <tr>
57
                    <tr>
58
                        <td>
58
                        <td>
59
                            [% overduesloo.date_due | html %]
59
                            [% overduesloo.date_due | $KohaDates as_due_date => 1 %]
60
                        </td>
60
                        </td>
61
                        <td>
61
                        <td>
62
                            [% INCLUDE 'biblio-title.inc' biblio=overduesloo link = 1 %] [% IF ( overduesloo.author ) %] by [% overduesloo.author | html %][% END %]
62
                            [% INCLUDE 'biblio-title.inc' biblio=overduesloo link = 1 %] [% IF ( overduesloo.author ) %] by [% overduesloo.author | html %][% END %]
Lines 82-88 Link Here
82
    [% IF ( todayoverduesloop ) %]
82
    [% IF ( todayoverduesloop ) %]
83
        <div id="branch_odues_today_odues" class="page-section">
83
        <div id="branch_odues_today_odues" class="page-section">
84
            <table style="width:100%;">
84
            <table style="width:100%;">
85
			<caption>Today's notifications</caption>
85
            <caption>Today's notifications</caption>
86
            <tr>
86
            <tr>
87
                <th>Date due</th>
87
                <th>Date due</th>
88
                <th>Title</th>
88
                <th>Title</th>
Lines 94-100 Link Here
94
                    <tr>
94
                    <tr>
95
                        <td>
95
                        <td>
96
                            <p>
96
                            <p>
97
                            [% todayoverduesloo.date_due | html %]
97
                            [% todayoverduesloo.date_due | $KohaDates as_due_date => 1 %]
98
                            </p>
98
                            </p>
99
                        </td>
99
                        </td>
100
                        <td>
100
                        <td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/on-site_checkouts.tt (-1 / +1 lines)
Lines 52-58 Link Here
52
                            <tr>
52
                            <tr>
53
                                <td data-order="[% item.date_due | html %]">
53
                                <td data-order="[% item.date_due | html %]">
54
                                    [% IF item.is_overdue %]<span class="overdue">[% END %]
54
                                    [% IF item.is_overdue %]<span class="overdue">[% END %]
55
                                    [% item.date_due | $KohaDates %]
55
                                    [% item.date_due | $KohaDates as_due_date => 1 %]
56
                                    [% IF item.is_overdue %]</span>[% END %]
56
                                    [% IF item.is_overdue %]</span>[% END %]
57
                                </td>
57
                                </td>
58
                                <td>
58
                                <td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-4 / +3 lines)
Lines 110-127 Link Here
110
                                [% END %]
110
                                [% END %]
111
                            </td>
111
                            </td>
112
                            <td data-order="[% issue.issuedate | html %]">
112
                            <td data-order="[% issue.issuedate | html %]">
113
                                [% issue.issuedate |$KohaDates  with_hours => 1 %]
113
                                [% issue.issuedate |$KohaDates with_hours => 1 %]
114
                            </td>
114
                            </td>
115
                            <td>[% Branches.GetName( issue.branchcode ) | html %]</td>
115
                            <td>[% Branches.GetName( issue.branchcode ) | html %]</td>
116
                            [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
116
                            [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
117
                                <td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% issue.issuer_id | uri %]">[% issue.firstname | html %] [% issue.surname | html %]</a></td>
117
                                <td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% issue.issuer_id | uri %]">[% issue.firstname | html %] [% issue.surname | html %]</a></td>
118
                            [% END %]
118
                            [% END %]
119
                            <td data-order="[% issue.date_due | html %]">
119
                            <td data-order="[% issue.date_due | html %]">
120
                                [% issue.date_due |$KohaDates  with_hours => 1 %]
120
                                [% issue.date_due | $KohaDates as_due_date => 1 %]
121
                            </td>
121
                            </td>
122
                            [% IF  issue.returndate %]
122
                            [% IF  issue.returndate %]
123
                                <td data-order="[% issue.returndate | html %]">
123
                                <td data-order="[% issue.returndate | html %]">
124
                                [% issue.returndate |$KohaDates  with_hours => 1 %]
124
                                [% issue.returndate |$KohaDates with_hours => 1 %]
125
                            [% ELSE %]
125
                            [% ELSE %]
126
                                <td data-order="checked out">
126
                                <td data-order="checked out">
127
                                <small>Checked out</small>
127
                                <small>Checked out</small>
Lines 151-157 Link Here
151
                [% INCLUDE table_readingrec %]
151
                [% INCLUDE table_readingrec %]
152
            </div> <!-- /.page-section -->
152
            </div> <!-- /.page-section -->
153
        [% END # /IF Koha.Preference('OnSiteCheckouts') %]
153
        [% END # /IF Koha.Preference('OnSiteCheckouts') %]
154
155
[% END %]
154
[% END %]
156
155
157
            </main>
156
            </main>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +2 lines)
Lines 374-385 Link Here
374
                                                    [% IF ( ISSUE.overdue ) %]
374
                                                    [% IF ( ISSUE.overdue ) %]
375
                                                        <td class="date_due overdue" data-order="[% ISSUE.date_due | html %]">
375
                                                        <td class="date_due overdue" data-order="[% ISSUE.date_due | html %]">
376
                                                            <span class="tdlabel">Date due:</span>
376
                                                            <span class="tdlabel">Date due:</span>
377
                                                            [% ISSUE.date_due | $KohaDates  as_due_date => 1 %]
377
                                                            [% ISSUE.date_due | $KohaDates as_due_date => 1 %]
378
                                                        </td>
378
                                                        </td>
379
                                                    [% ELSE %]
379
                                                    [% ELSE %]
380
                                                        <td class="date_due" data-order="[% ISSUE.date_due | html %]">
380
                                                        <td class="date_due" data-order="[% ISSUE.date_due | html %]">
381
                                                            <span class="tdlabel">Date due:</span>
381
                                                            <span class="tdlabel">Date due:</span>
382
                                                            [% ISSUE.date_due | $KohaDates  as_due_date => 1 %]
382
                                                            [% ISSUE.date_due | $KohaDates as_due_date => 1 %]
383
                                                        </td>
383
                                                        </td>
384
                                                    [% END %]
384
                                                    [% END %]
385
                                                    [% UNLESS ( item_level_itypes ) %]
385
                                                    [% UNLESS ( item_level_itypes ) %]
386
- 

Return to bug 22375