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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-6 / +2 lines)
Lines 56-66 Link Here
56
                <th class="NoSort">&nbsp;</th>
56
                <th class="NoSort">&nbsp;</th>
57
                [% FOREACH item_header IN item_header_loop %]
57
                [% FOREACH item_header IN item_header_loop %]
58
                    [% IF item_header.column_name %]
58
                    [% IF item_header.column_name %]
59
                        [% IF date_fields.grep(item_header.column_name).size %]
59
                        <th data-colname="[% item_header.column_name | html %]">
60
                            <th class="title-string" data-colname="[% item_header.column_name | html %]">
61
                        [% ELSE %]
62
                            <th data-colname="[% item_header.column_name | html %]">
63
                        [% END %]
64
                    [% ELSE %]
60
                    [% ELSE %]
65
                        <th>
61
                        <th>
66
                    [% END %]
62
                    [% END %]
Lines 115-121 Link Here
115
                    [% END %]
111
                    [% END %]
116
                [% FOREACH item_valu IN item_loo.item_value %]
112
                [% FOREACH item_valu IN item_loo.item_value %]
117
                    [% IF item_valu.datatype == 'date' %]
113
                    [% IF item_valu.datatype == 'date' %]
118
                        <td><span title="[% item_valu.field | html %]">[% item_valu.field | $KohaDates %]</span></td>
114
                        <td data-order="[% item_valu.field | html %]">[% item_valu.field | $KohaDates %]</td>
119
                    [% ELSE %]
115
                    [% ELSE %]
120
                        <td>[% item_valu.field | html %]</td>
116
                        <td>[% item_valu.field | html %]</td>
121
                    [% END %]
117
                    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt (-2 / +2 lines)
Lines 126-132 Link Here
126
                        <th>Address</th>
126
                        <th>Address</th>
127
                        <th>Category</th>
127
                        <th>Category</th>
128
                        <th>Library</th>
128
                        <th>Library</th>
129
                        <th class="title-string">Expires on</th>
129
                        <th>Expires on</th>
130
                        <th>Circ notes</th>
130
                        <th>Circ notes</th>
131
                    </tr>
131
                    </tr>
132
                </thead>
132
                </thead>
Lines 154-160 Link Here
154
                            </td>
154
                            </td>
155
                            <td>[% p.borrowernumber.categorycode.description | html %] ([% p.borrowernumber.categorycode.categorycode | html %])</td>
155
                            <td>[% p.borrowernumber.categorycode.description | html %] ([% p.borrowernumber.categorycode.categorycode | html %])</td>
156
                            <td>[% p.borrowernumber.branchcode.branchname | html %]</td>
156
                            <td>[% p.borrowernumber.branchcode.branchname | html %]</td>
157
                            <td><span title="[% p.borrowernumber.dateexpiry | html %]">[% p.borrowernumber.dateexpiry | $KohaDates %]</span></td>
157
                            <td data-order="[% p.borrowernumber.dateexpiry | html %]">[% p.borrowernumber.dateexpiry | $KohaDates %]</td>
158
                            <td>[% p.borrowernumber.borrowernotes | html %]</td>
158
                            <td>[% p.borrowernumber.borrowernotes | html %]</td>
159
                        </tr>
159
                        </tr>
160
                    [% END %]
160
                    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-16 / +12 lines)
Lines 541-548 Link Here
541
                                            [% IF itemdata_enumchron %]
541
                                            [% IF itemdata_enumchron %]
542
                                                <th>Vol no.</th>
542
                                                <th>Vol no.</th>
543
                                            [% END %]
543
                                            [% END %]
544
                                            <th class="title-string">Information</th>
544
                                            <th>Information</th>
545
                                            <th class="title-string">Allowed pickup locations</th>
545
                                            <th>Allowed pickup locations</th>
546
                                        </tr>
546
                                        </tr>
547
                                    </thead>
547
                                    </thead>
548
                                    <tbody>
548
                                    <tbody>
Lines 627-643 Link Here
627
                                                            [% itemloo.enumchron | html %]
627
                                                            [% itemloo.enumchron | html %]
628
                                                        </td>
628
                                                        </td>
629
                                                    [% END %]
629
                                                    [% END %]
630
                                                    <td>
630
                                                    [% IF ( itemloo.onloan ) %]
631
                                                        [% IF ( itemloo.onloan ) %]
631
                                                        <td data-order="[% itemloo.date_due | html %]">
632
                                                            <span title="[% itemloo.date_due | html %]" class="checkedout">Due [% itemloo.date_due | $KohaDates  as_due_date => 1 %]</span>
632
                                                            <span class="checkedout">Due [% itemloo.date_due | $KohaDates  as_due_date => 1 %]</span>
633
                                                        [% ELSE %]
633
                                                    [% ELSE %]
634
                                                            <span title="0000-00-00">
634
                                                        <td>
635
                                                                [% IF ( itemloo.transfertwhen ) %]
635
                                                            [% IF ( itemloo.transfertwhen ) %]
636
                                                                    In transit from [% Branches.GetName( itemloo.transfertfrom ) | html %],
636
                                                                In transit from [% Branches.GetName( itemloo.transfertfrom ) | html %],
637
                                                                    to [% Branches.GetName( itemloo.transfertto ) | html %], since [% itemloo.transfertwhen | html %]
637
                                                                to [% Branches.GetName( itemloo.transfertto ) | html %], since [% itemloo.transfertwhen | html %]
638
                                                                [% END %]
638
                                                            [% END %]
639
                                                            </span>
639
                                                    [% END %]
640
                                                        [% END %]
641
640
642
                                                        [% IF ( itemloo.reservedate ) %]
641
                                                        [% IF ( itemloo.reservedate ) %]
643
                                                            [% IF ( itemloo.nocancel ) %]
642
                                                            [% IF ( itemloo.nocancel ) %]
Lines 1074-1082 Link Here
1074
            var my_table = $("#requestspecific").dataTable($.extend(true, {}, dataTablesDefaults, {
1073
            var my_table = $("#requestspecific").dataTable($.extend(true, {}, dataTablesDefaults, {
1075
                'bPaginate': false,
1074
                'bPaginate': false,
1076
                "sDom": '<"top pager"ilf>t',
1075
                "sDom": '<"top pager"ilf>t',
1077
                "aoColumnDefs": [
1078
                    { "sType": "title-string", "aTargets" : [ "title-string" ] }
1079
                ]
1080
            }));
1076
            }));
1081
1077
1082
            //Override fieldset styling for dataTables search box
1078
            //Override fieldset styling for dataTables search box
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt (-4 / +3 lines)
Lines 82-88 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
82
		<th>Weight</th>
82
		<th>Weight</th>
83
            <th class="NoSort noExport">Actions</th>
83
            <th class="NoSort noExport">Actions</th>
84
            [% UNLESS ( filter_approved_pending ) %]<th>Reviewer</th>[% END %]
84
            [% UNLESS ( filter_approved_pending ) %]<th>Reviewer</th>[% END %]
85
        <th class="title-string">Date</th>
85
        <th>Date</th>
86
	</tr>
86
	</tr>
87
    </thead>
87
    </thead>
88
    <tbody>
88
    <tbody>
Lines 137-144 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
137
            </td>
137
            </td>
138
            [% UNLESS ( filter_approved_pending ) %]<td>&nbsp;</td>[% END %]
138
            [% UNLESS ( filter_approved_pending ) %]<td>&nbsp;</td>[% END %]
139
            [% END %]
139
            [% END %]
140
            <td>
140
            <td data-order="[% tagloo.date_approved | html %]">
141
                <span title="[% tagloo.date_approved | html %]">[% tagloo.date_approved | $KohaDates %]</span>
141
                [% tagloo.date_approved | $KohaDates %]
142
            </td>
142
            </td>
143
        </tr>
143
        </tr>
144
    [% END %]
144
    [% END %]
145
- 

Return to bug 28016