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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css (-5 / +2 lines)
Lines 140-153 a.tagnum { Link Here
140
	width: 79.2%;
140
	width: 79.2%;
141
}
141
}
142
142
143
tr.active td {
143
tbody tr.active:nth-child(2n+1) td,
144
tbody tr.active td {
144
    background-color: #FFFFCC;
145
    background-color: #FFFFCC;
145
}
146
}
146
147
147
tr.active.highlight td {
148
    background-color: #FEF4B4;
149
}
150
151
#loading {
148
#loading {
152
    background-color: #FFF;
149
    background-color: #FFF;
153
    cursor: wait;
150
    cursor: wait;
(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-10 / +1 lines)
Lines 264-284 table+table { Link Here
264
264
265
.highlighted-row { background-color: orange !important }
265
.highlighted-row { background-color: orange !important }
266
266
267
tbody tr:nth-child(odd) td,
267
tbody tr:nth-child(odd) td {
268
tr.highlight td,
269
tr.highlight th,
270
tr.odd td,
271
tr.odd.highlight td {
272
	background-color : #F3F3F3;
268
	background-color : #F3F3F3;
273
    border : 1px solid #BCBCBC;
269
    border : 1px solid #BCBCBC;
274
    border-right : 1px solid #BCBCBC;
270
    border-right : 1px solid #BCBCBC;
275
}
271
}
276
272
277
tr.even td, tr.even.highlight td {
278
	background-color: #FFF;
279
    border-right : 1px solid #BCBCBC;
280
}
281
282
.overdue td.od {
273
.overdue td.od {
283
	color : #cc0000;
274
	color : #cc0000;
284
	font-weight : bold;
275
	font-weight : bold;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-1 / +5 lines)
Lines 446-452 Link Here
446
                </tfoot>
446
                </tfoot>
447
                <tbody>
447
                <tbody>
448
                [% FOREACH books_loo IN books_loop %]
448
                [% FOREACH books_loo IN books_loop %]
449
                    [% IF ( books_loo.order_received ) %]<tr class="disabled">[% ELSE %][% IF ( books_loo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %][% END %]
449
                    [% IF ( books_loo.order_received ) %]
450
                        <tr class="disabled">
451
                    [% ELSE %]
452
                        <tr>
453
                    [% END %]
450
                        <td>
454
                        <td>
451
                            [% books_loo.ordernumber %]
455
                            [% books_loo.ordernumber %]
452
                        </td>
456
                        </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt (-2 / +1 lines)
Lines 131-138 $(document).ready(function() { Link Here
131
      </thead>
131
      </thead>
132
      <tbody>
132
      <tbody>
133
      [% FOREACH lateorder IN lateorders %]
133
      [% FOREACH lateorder IN lateorders %]
134
        [% UNLESS ( loop.odd ) %]<tr class="highlight">
134
        <tr>
135
        [% ELSE %]<tr>[% END %]
136
            <td>
135
            <td>
137
                <input type="checkbox" value="[% lateorder.ordernumber %]" data-booksellerid="[% lateorder.supplierid %]" name="ordernumber">
136
                <input type="checkbox" value="[% lateorder.ordernumber %]" data-booksellerid="[% lateorder.supplierid %]" name="ordernumber">
138
            </td>
137
            </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt (-5 / +1 lines)
Lines 49-59 Link Here
49
    </thead>
49
    </thead>
50
    <tbody>
50
    <tbody>
51
[% FOREACH order IN ordered %]
51
[% FOREACH order IN ordered %]
52
    [% IF loop.odd %]
52
    <tr>
53
        <tr class="highlight">
54
    [% ELSE %]
55
        <tr>
56
    [% END %]
57
	<td class="cell">
53
	<td class="cell">
58
	    [% order.title %]
54
	    [% order.title %]
59
	</td>
55
	</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcels.tt (-4 lines)
Lines 98-108 Link Here
98
    <tbody>
98
    <tbody>
99
    <!-- Actual Search Results -->
99
    <!-- Actual Search Results -->
100
    [% FOREACH searchresult IN searchresults %]
100
    [% FOREACH searchresult IN searchresults %]
101
        [% UNLESS ( loop.odd ) %]
102
        <tr class="highlight">
103
        [% ELSE %]
104
        <tr>
101
        <tr>
105
        [% END %]
106
            <td>
102
            <td>
107
                [% searchresult.number %]
103
                [% searchresult.number %]
108
            </td>
104
            </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt (-5 lines)
Lines 52-63 Link Here
52
    </thead>
52
    </thead>
53
53
54
[% FOREACH order IN spent %]
54
[% FOREACH order IN spent %]
55
    [% IF loop.odd %]
56
    <tr class="highlight">
57
    [% ELSE %]
58
    <tr>
55
    <tr>
59
    [% END %]
60
61
	<td class="cell">
56
	<td class="cell">
62
	    [% order.title %]
57
	    [% order.title %]
63
	</td>
58
	</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-1 / +1 lines)
Lines 369-375 function delete_contact(ev) { Link Here
369
                  </thead>
369
                  </thead>
370
                  <tbody>
370
                  <tbody>
371
                    [% FOREACH contract IN contracts %]
371
                    [% FOREACH contract IN contracts %]
372
                        [% IF ( loop.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
372
                        <tr>
373
                        <td>
373
                        <td>
374
                            <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a>
374
                            <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&amp;contractnumber=[% contract.contractnumber %]&amp;booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a>
375
                        </td>
375
                        </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt (-1 / +1 lines)
Lines 272-278 Link Here
272
272
273
        </td>
273
        </td>
274
    </tr>
274
    </tr>
275
    <!-- note highlight assignment appears backwards because we already have a normal row for Default -->
275
276
    [% FOREACH loo IN frameworks %]
276
    [% FOREACH loo IN frameworks %]
277
        <tr>
277
        <tr>
278
            <td>[% loo.frameworkcode %]</td>
278
            <td>[% loo.frameworkcode %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/classsources.tt (-4 lines)
Lines 285-295 function CheckRuleForm(f) { Link Here
285
    <th>Actions</th>
285
    <th>Actions</th>
286
  </tr>
286
  </tr>
287
  [% FOREACH class_sort_rule IN class_sort_rules %]
287
  [% FOREACH class_sort_rule IN class_sort_rules %]
288
  [% IF ( loop.odd ) %]
289
  <tr>
288
  <tr>
290
  [% ELSE %]
291
  <tr class="highlight">
292
  [% END %]
293
    <td>[% class_sort_rule.rule %]</td>
289
    <td>[% class_sort_rule.rule %]</td>
294
    <td>[% class_sort_rule.description %]</td>
290
    <td>[% class_sort_rule.description %]</td>
295
    <td>[% class_sort_rule.sort_routine %]</td>
291
    <td>[% class_sort_rule.sort_routine %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt (-4 lines)
Lines 74-84 function searchauthority() { Link Here
74
    [% END %]
74
    [% END %]
75
    </tr>
75
    </tr>
76
[% FOREACH resul IN result %]
76
[% FOREACH resul IN result %]
77
    [% UNLESS ( loop.odd ) %]
78
    <tr data-authid="[% resul.authid %]" class="highlight">
79
    [% ELSE %]
80
    <tr data-authid="[% resul.authid %]">
77
    <tr data-authid="[% resul.authid %]">
81
    [% END %]
82
      <td>[% PROCESS authresult summary=resul.summary %]</td>
78
      <td>[% PROCESS authresult summary=resul.summary %]</td>
83
      <td><a href="detail.pl?authid=[% resul.authid %]">Details</a></td>
79
      <td><a href="detail.pl?authid=[% resul.authid %]">Details</a></td>
84
  [% UNLESS ( resul.isEDITORS ) %]
80
  [% UNLESS ( resul.isEDITORS ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-2 / +2 lines)
Lines 440-446 var holdForPatron = function () { Link Here
440
                    <th>Count</th>
440
                    <th>Count</th>
441
                </tr>
441
                </tr>
442
                [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
442
                [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
443
                    [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
443
                    <tr>
444
                        <td>
444
                        <td>
445
                            <a href="/cgi-bin/koha/catalogue/search.pl?idx=[% SEARCH_RESULT.scan_index_to_use %]&amp;q=[% SEARCH_RESULT.scan_use |url %]&quot;[% SEARCH_RESULT.title %]&quot;">[% SEARCH_RESULT.title |html %]</a>
445
                            <a href="/cgi-bin/koha/catalogue/search.pl?idx=[% SEARCH_RESULT.scan_index_to_use %]&amp;q=[% SEARCH_RESULT.scan_use |url %]&quot;[% SEARCH_RESULT.title %]&quot;">[% SEARCH_RESULT.title |html %]</a>
446
                        </td>
446
                        </td>
Lines 474-480 var holdForPatron = function () { Link Here
474
                        <!-- Actual Search Results -->
474
                        <!-- Actual Search Results -->
475
                        [% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %]
475
                        [% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %]
476
                        [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
476
                        [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
477
                         [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
477
                            <tr>
478
                            [% IF ( AmazonCoverImages || LocalCoverImages ) %]
478
                            [% IF ( AmazonCoverImages || LocalCoverImages ) %]
479
                                <td>
479
                                <td>
480
                                    [% IF ( LocalCoverImages) %]
480
                                    [% IF ( LocalCoverImages) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/subject.tt (-1 / +1 lines)
Lines 26-32 Link Here
26
		<th>Subject headings</th>
26
		<th>Subject headings</th>
27
	</tr>
27
	</tr>
28
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
28
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
29
	[% IF ( SEARCH_RESULT.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
29
    <tr>
30
		<td>
30
		<td>
31
			<a href="/cgi-bin/koha/search.pl?type=[% IF ( SEARCH_RESULT.opac ) %]opac[% ELSE %]intra[% END %]&amp;subjectitems=[% SEARCH_RESULT.subject2 |html %]">[% SEARCH_RESULT.subject %]</a>
31
			<a href="/cgi-bin/koha/search.pl?type=[% IF ( SEARCH_RESULT.opac ) %]opac[% ELSE %]intra[% END %]&amp;subjectitems=[% SEARCH_RESULT.subject2 |html %]">[% SEARCH_RESULT.subject %]</a>
32
		</td>
32
		</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt (-9 / +1 lines)
Lines 142-152 Link Here
142
            [% IF ( CAN_user_editcatalogue_edit_items ) %]<th>&nbsp;</th>[% END %]
142
            [% IF ( CAN_user_editcatalogue_edit_items ) %]<th>&nbsp;</th>[% END %]
143
        </tr>
143
        </tr>
144
    [% FOREACH resultsloo IN resultsloop %]
144
    [% FOREACH resultsloo IN resultsloop %]
145
        [% IF ( loop.even ) %]
145
        <tr>
146
            <tr class="highlight">
147
        [% ELSE %]
148
            <tr>
149
        [% END %]
150
            <td><input type="checkbox" class="selection" id="bib[% resultsloo.biblionumber %]" name="biblionumber" value="[% resultsloo.biblionumber %]" /></td>
146
            <td><input type="checkbox" class="selection" id="bib[% resultsloo.biblionumber %]" name="biblionumber" value="[% resultsloo.biblionumber %]" /></td>
151
            <td>
147
            <td>
152
                <p>
148
                <p>
Lines 231-241 Link Here
231
                [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<th>&nbsp;</th>[% END %]
227
                [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<th>&nbsp;</th>[% END %]
232
            </tr>
228
            </tr>
233
            [% FOREACH breeding_loo IN breeding_loop %]
229
            [% FOREACH breeding_loo IN breeding_loop %]
234
            [% IF ( loop.odd ) %]
235
               <tr>
230
               <tr>
236
            [% ELSE %]
237
               <tr class="highlight">
238
            [% END %]
239
                <td>[% breeding_loo.title |html %]
231
                <td>[% breeding_loo.title |html %]
240
                [% breeding_loo.author %]</td>
232
                [% breeding_loo.author %]</td>
241
                <td>[% breeding_loo.isbn %]</td>
233
                <td>[% breeding_loo.isbn %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-2 / +2 lines)
Lines 157-165 function confirm_deletion() { Link Here
157
                [% FOREACH item_loo IN item_loop %]
157
                [% FOREACH item_loo IN item_loop %]
158
                    [% IF ( item_loo.itemnumber == itemnumber) %]
158
                    [% IF ( item_loo.itemnumber == itemnumber) %]
159
                        [% IF item_loo.nomod %]
159
                        [% IF item_loo.nomod %]
160
                           <tr id="row[% item_loo.itemnumber %]" class="active highlight">
160
                           <tr id="row[% item_loo.itemnumber %]" class="active">
161
                        [% ELSE %]
161
                        [% ELSE %]
162
                            <tr id="row[% item_loo.itemnumber %]" class="active editable highlight">
162
                            <tr id="row[% item_loo.itemnumber %]" class="active editable">
163
                        [% END %]
163
                        [% END %]
164
                    [% ELSE %]
164
                    [% ELSE %]
165
                        [% IF item_loo.nomod %]
165
                        [% IF item_loo.nomod %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/bookcount.tt (-2 / +1 lines)
Lines 4-10 Link Here
4
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
5
<script type="text/javascript">
5
<script type="text/javascript">
6
$(document).ready(function(){
6
$(document).ready(function(){
7
    $(".striped tr:even").addClass("highlight");
8
    $("tr.mybranch td").css("background-color", "#CFE7FF");
7
    $("tr.mybranch td").css("background-color", "#CFE7FF");
9
});
8
});
10
</script>
9
</script>
Lines 33-39 $(document).ready(function(){ Link Here
33
            <td>[% count %]</td>
32
            <td>[% count %]</td>
34
        </tr>
33
        </tr>
35
</table>
34
</table>
36
<table class="striped">
35
<table>
37
    <tr>
36
    <tr>
38
        <th>Library</th>
37
        <th>Library</th>
39
        <th>No. of times checked out</th>
38
        <th>No. of times checked out</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +1 lines)
Lines 75-81 $(document).ready(function() { Link Here
75
	<!-- FIXME: Shouldn't hardcode dollar signs, since Euro or Pound might be needed -->
75
	<!-- FIXME: Shouldn't hardcode dollar signs, since Euro or Pound might be needed -->
76
  [% FOREACH account IN accounts %]
76
  [% FOREACH account IN accounts %]
77
77
78
   [% IF ( loop.odd ) %]<tr>[% ELSE %]<tr class="highlight">[% END %]
78
   <tr>
79
   <td><span title="[% account.date %]">[% account.date |$KohaDates %]</span></td>
79
   <td><span title="[% account.date %]">[% account.date |$KohaDates %]</span></td>
80
      <td>
80
      <td>
81
        [% SWITCH account.accounttype %]
81
        [% SWITCH account.accounttype %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt (-5 / +1 lines)
Lines 40-50 $(document).ready(function(){ Link Here
40
                [% END %]
40
                [% END %]
41
            </tr>
41
            </tr>
42
                [% FOREACH loopro IN mainloo.looprow %]
42
                [% FOREACH loopro IN mainloo.looprow %]
43
		[% UNLESS ( loop.odd ) %]
43
            <tr>
44
                    <tr class="highlight">
45
		[% ELSE %]
46
		    <tr>
47
		[% END %]
48
                        <td>[% loopro.rowtitle %]</td>
44
                        <td>[% loopro.rowtitle %]</td>
49
                        [% FOREACH loopcel IN loopro.loopcell %]
45
                        [% FOREACH loopcel IN loopro.loopcell %]
50
                        <td>[% IF ( loopcel.value ) %][% loopcel.value %][% END %]
46
                        <td>[% IF ( loopcel.value ) %][% loopcel.value %][% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (-8 / +6 lines)
Lines 40-47 Link Here
40
				<th>TOTAL</th>
40
				<th>TOTAL</th>
41
			</tr>
41
			</tr>
42
				[% FOREACH loopro IN mainloo.looprow %]
42
				[% FOREACH loopro IN mainloo.looprow %]
43
                    [% UNLESS ( loop.odd ) %]<tr class="highlight">
43
                    <tr>
44
                    [% ELSE %]<tr>[% END %]
45
						<td>[% IF ( loopro.rowtitle_display ) %][% loopro.rowtitle_display %][% ELSE %][% loopro.rowtitle %][% END %]
44
						<td>[% IF ( loopro.rowtitle_display ) %][% loopro.rowtitle_display %][% ELSE %][% loopro.rowtitle %][% END %]
46
						</td>
45
						</td>
47
						[% FOREACH loopcel IN loopro.loopcell %]
46
						[% FOREACH loopcel IN loopro.loopcell %]
Lines 74-80 Link Here
74
			</tr>
73
			</tr>
75
		</thead>
74
		</thead>
76
		<tbody>
75
		<tbody>
77
			<tr class="highlight">
76
            <tr>
78
			<td>Patron category</td>
77
			<td>Patron category</td>
79
			<td><input type="radio" name="Line" value="categorycode" /></td>
78
			<td><input type="radio" name="Line" value="categorycode" /></td>
80
			<td><input type="radio" name="Column" value="categorycode" /></td>
79
			<td><input type="radio" name="Column" value="categorycode" /></td>
Lines 91-97 Link Here
91
			<td colspan="2"></td>
90
			<td colspan="2"></td>
92
			<td ><select name="status"><option value=""> </option><option value="debarred">restricted</option><option value="gonenoadress">gone no address</option><option value="lost">lost</option></select></td>
91
			<td ><select name="status"><option value=""> </option><option value="debarred">restricted</option><option value="gonenoadress">gone no address</option><option value="lost">lost</option></select></td>
93
			</tr>
92
			</tr>
94
			<tr class="highlight">
93
            <tr>
95
			<td>Patron activity</td>
94
			<td>Patron activity</td>
96
			<td colspan="2"><select name="period" id="period">
95
			<td colspan="2"><select name="period" id="period">
97
			<option value="1">1</option>
96
			<option value="1">1</option>
Lines 134-140 Link Here
134
			<td>&nbsp;</td>
133
			<td>&nbsp;</td>
135
			</tr>
134
			</tr>
136
135
137
			<tr class="highlight">
136
            <tr>
138
			<td>Library</td>
137
			<td>Library</td>
139
			<td><input type="radio" name="Line"   value="branchcode" /></td>
138
			<td><input type="radio" name="Line"   value="branchcode" /></td>
140
			<td><input type="radio" name="Column" value="branchcode" /></td>
139
			<td><input type="radio" name="Column" value="branchcode" /></td>
Lines 168-174 Link Here
168
                </td>
167
                </td>
169
            </tr>
168
            </tr>
170
			[% IF ( SORT1_LOOP ) %]
169
			[% IF ( SORT1_LOOP ) %]
171
				<tr class="highlight">
170
                <tr>
172
				<td>Sort1</td>
171
				<td>Sort1</td>
173
				<td><input type="radio" name="Line" value="sort1" /></td>
172
				<td><input type="radio" name="Line" value="sort1" /></td>
174
				<td><input type="radio" name="Column" value="sort1" /></td>
173
				<td><input type="radio" name="Column" value="sort1" /></td>
Lines 185-192 Link Here
185
                <input type="hidden" name="Filter" />
184
                <input type="hidden" name="Filter" />
186
			[% END %]
185
			[% END %]
187
			[% IF ( SORT2_LOOP ) %]
186
			[% IF ( SORT2_LOOP ) %]
188
                [% UNLESS ( SORT1_LOOP ) %]<tr class="highlight">
187
                <tr>
189
                [% ELSE %]<tr>[% END %]
190
				<td>Sort2</td>
188
				<td>Sort2</td>
191
				<td><input type="radio" name="Line" value="sort2" /></td>
189
				<td><input type="radio" name="Line" value="sort2" /></td>
192
				<td><input type="radio" name="Column" value="sort2" /></td>
190
				<td><input type="radio" name="Column" value="sort2" /></td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt (-1 / +1 lines)
Lines 75-81 Link Here
75
				[% END %]
75
				[% END %]
76
			  </tr>
76
			  </tr>
77
				[% FOREACH loopro IN mainloo.looprow %]
77
				[% FOREACH loopro IN mainloo.looprow %]
78
[% IF ( loopro.hilighted ) %]<tr class="highlighted">[% ELSE %]<tr>[% END %]
78
                    <tr>
79
						<td>[% loopro.rowtitle %]</td>
79
						<td>[% loopro.rowtitle %]</td>
80
						[% FOREACH loopcel IN loopro.loopcell %]
80
						[% FOREACH loopcel IN loopro.loopcell %]
81
							<td>
81
							<td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_out.tt (-2 / +1 lines)
Lines 66-73 Link Here
66
			</tr>
66
			</tr>
67
				[% IF ( looptable.looprow ) %]
67
				[% IF ( looptable.looprow ) %]
68
				[% FOREACH loopro IN looptable.looprow %]
68
				[% FOREACH loopro IN looptable.looprow %]
69
				    [% UNLESS ( loop.odd ) %]<tr class="highlight">
69
                    <tr>
70
		                    [% ELSE %]<tr>[% END %]
71
		    
70
		    
72
						<td>[% loop.count %]</td>
71
						<td>[% loop.count %]</td>
73
                        <td>[% IF ( loopro.itemcallnumber ) %][% loopro.itemcallnumber %][% ELSE %]No call number[% END %]</td>
72
                        <td>[% IF ( loopro.itemcallnumber ) %][% loopro.itemcallnumber %][% ELSE %]No call number[% END %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt (-5 / +1 lines)
Lines 71-81 Link Here
71
		<th>&nbsp;</th>
71
		<th>&nbsp;</th>
72
		</tr>
72
		</tr>
73
		[% FOREACH definition IN definitions %]
73
		[% FOREACH definition IN definitions %]
74
			[% UNLESS ( loop.odd ) %]
74
        <tr>
75
				<tr class="highlight" valign="top">
76
			[% ELSE %]
77
				<tr valign="top">
78
			[% END %]
79
			<td>[% definition.name %]</td>
75
			<td>[% definition.name %]</td>
80
			<td>[% definition.description %]</td>
76
			<td>[% definition.description %]</td>
81
			<td>[% definition.areaname %]</td>
77
			<td>[% definition.areaname %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt (-9 / +5 lines)
Lines 44-54 Link Here
44
                <th>TOTAL</th>
44
                <th>TOTAL</th>
45
                </tr>
45
                </tr>
46
                [% FOREACH loopro IN mainloo.looprow %]
46
                [% FOREACH loopro IN mainloo.looprow %]
47
                    [% IF ( loop.odd ) %]
48
                    <tr>
47
                    <tr>
49
                    [% ELSE %]
50
                    <tr class="highlight">
51
                    [% END %]
52
                        <td>[% loopro.rowtitle_display or "UNKNOWN VALUE" |html %]</td>
48
                        <td>[% loopro.rowtitle_display or "UNKNOWN VALUE" |html %]</td>
53
                    [% FOREACH loopcel IN loopro.loopcell %]
49
                    [% FOREACH loopcel IN loopro.loopcell %]
54
						<td>[% loopcel.value %]</td>
50
						<td>[% loopcel.value %]</td>
Lines 88-94 Link Here
88
                    <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
84
                    <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
89
                    </td>
85
                    </td>
90
                </tr>
86
                </tr>
91
                <tr class="highlight"> 
87
            <tr>
92
                <td><label for="PeriodTypeSel">Type:</label><select name="PeriodTypeSel" id="PeriodTypeSel">
88
                <td><label for="PeriodTypeSel">Type:</label><select name="PeriodTypeSel" id="PeriodTypeSel">
93
                    <option value ="issue">Checkout</option>
89
                    <option value ="issue">Checkout</option>
94
                    <option value ="renew">Renewal</option>
90
                    <option value ="renew">Renewal</option>
Lines 142-148 Link Here
142
               </select>
138
               </select>
143
             </td> 
139
             </td> 
144
        </tr>
140
        </tr>
145
        <tr class="highlight">
141
        <tr>
146
            <td>Item type</td>
142
            <td>Item type</td>
147
            <td><input type="radio" name="Line" value="itemtype" /></td>
143
            <td><input type="radio" name="Line" value="itemtype" /></td>
148
            <td><input type="radio" name="Column" value="itemtype" /></td>
144
            <td><input type="radio" name="Column" value="itemtype" /></td>
Lines 166-172 Link Here
166
               </select>
162
               </select>
167
             </td> 
163
             </td> 
168
        </tr>
164
        </tr>
169
        <tr class="highlight">
165
        <tr>
170
            <td>Collection</td>
166
            <td>Collection</td>
171
            <td><input type="radio" name="Line"   value="items.ccode" /></td>
167
            <td><input type="radio" name="Line"   value="items.ccode" /></td>
172
            <td><input type="radio" name="Column" value="items.ccode" /></td>
168
            <td><input type="radio" name="Column" value="items.ccode" /></td>
Lines 190-196 Link Here
190
               </select>
186
               </select>
191
            </td> 
187
            </td> 
192
        </tr>
188
        </tr>
193
        <tr class="highlight">
189
        <tr>
194
            <td>Item call number</td>
190
            <td>Item call number</td>
195
            <td></td>
191
            <td></td>
196
            <td></td>
192
            <td></td>
Lines 210-216 Link Here
210
        </tr>
206
        </tr>
211
        [% END %]
207
        [% END %]
212
        [% IF ( hassort2 ) %]
208
        [% IF ( hassort2 ) %]
213
        <tr class="highlight"><td>Patron sort 2</td>
209
        <tr><td>Patron sort 2</td>
214
            <td><input type="radio" name="Line" value="borrowers.sort2" /></td>
210
            <td><input type="radio" name="Line" value="borrowers.sort2" /></td>
215
            <td><input type="radio" name="Column" value="borrowers.sort2" /></td>
211
            <td><input type="radio" name="Column" value="borrowers.sort2" /></td>
216
           	<td><select name="Filter" id="sort2">
212
           	<td><select name="Filter" id="sort2">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt (-10 / +6 lines)
Lines 118-128 Link Here
118
                <th>TOTAL</th>
118
                <th>TOTAL</th>
119
                </tr>
119
                </tr>
120
                [% FOREACH loopro IN mainloo.looprow %]
120
                [% FOREACH loopro IN mainloo.looprow %]
121
                    [% IF ( loop.odd ) %]
122
                    <tr>
121
                    <tr>
123
                    [% ELSE %]
124
                    <tr class="highlight">
125
                    [% END %]
126
                        <td>[% loopro.rowtitle_display or "UNKNOWN VALUE" |html %]</td>
122
                        <td>[% loopro.rowtitle_display or "UNKNOWN VALUE" |html %]</td>
127
                    [% FOREACH loopcel IN loopro.loopcell %]
123
                    [% FOREACH loopcel IN loopro.loopcell %]
128
						<td align="center">
124
						<td align="center">
Lines 168-174 Link Here
168
				<input type="checkbox" name="filter_reservestatus_or_5" value="5" /> Cancelled
164
				<input type="checkbox" name="filter_reservestatus_or_5" value="5" /> Cancelled
169
				</td>
165
				</td>
170
             </tr>
166
             </tr>
171
             <tr class="highlight">
167
             <tr>
172
                <td>Hold Date</td>
168
                <td>Hold Date</td>
173
                <td><input type="radio" name="Line" value="reservedate" /></td>
169
                <td><input type="radio" name="Line" value="reservedate" /></td>
174
                <td><input type="radio" name="Column" value="reservedate" /></td>
170
                <td><input type="radio" name="Column" value="reservedate" /></td>
Lines 220-226 Link Here
220
               </select>
216
               </select>
221
             </td> 
217
             </td> 
222
        </tr>
218
        </tr>
223
        <tr class="highlight">
219
        <tr>
224
            <td>Item type</td>
220
            <td>Item type</td>
225
            <td><input type="radio" name="Line" value="items.itype" /></td>
221
            <td><input type="radio" name="Line" value="items.itype" /></td>
226
            <td><input type="radio" name="Column" value="items.itype" /></td>
222
            <td><input type="radio" name="Column" value="items.itype" /></td>
Lines 244-250 Link Here
244
               </select>
240
               </select>
245
             </td> 
241
             </td> 
246
        </tr>
242
        </tr>
247
        <tr class="highlight">
243
        <tr>
248
            <td>Holding library</td>
244
            <td>Holding library</td>
249
            <td><input type="radio" name="Line" value="items.holdingbranch" /></td>
245
            <td><input type="radio" name="Line" value="items.holdingbranch" /></td>
250
            <td><input type="radio" name="Column" value="items.holdingbranch" /></td>
246
            <td><input type="radio" name="Column" value="items.holdingbranch" /></td>
Lines 268-274 Link Here
268
               </select>
264
               </select>
269
             </td> 
265
             </td> 
270
        </tr>
266
        </tr>
271
        <tr class="highlight">
267
        <tr>
272
            <td>Collection</td>
268
            <td>Collection</td>
273
            <td><input type="radio" name="Line"   value="items.ccode" /></td>
269
            <td><input type="radio" name="Line"   value="items.ccode" /></td>
274
            <td><input type="radio" name="Column" value="items.ccode" /></td>
270
            <td><input type="radio" name="Column" value="items.ccode" /></td>
Lines 292-298 Link Here
292
               </select>
288
               </select>
293
            </td> 
289
            </td> 
294
        </tr>
290
        </tr>
295
        <tr class="highlight">
291
        <tr>
296
            <td>Item call number</td>
292
            <td>Item call number</td>
297
            <td></td>
293
            <td></td>
298
            <td></td>
294
            <td></td>
Lines 312-318 Link Here
312
        </tr>
308
        </tr>
313
        [% END %]
309
        [% END %]
314
        [% IF ( hassort2 ) %]
310
        [% IF ( hassort2 ) %]
315
        <tr class="highlight"><td>Patron sort 2</td>
311
        <tr><td>Patron sort 2</td>
316
            <td><input type="radio" name="Line" value="borrowers.sort2" /></td>
312
            <td><input type="radio" name="Line" value="borrowers.sort2" /></td>
317
            <td><input type="radio" name="Column" value="borrowers.sort2" /></td>
313
            <td><input type="radio" name="Column" value="borrowers.sort2" /></td>
318
           	<td><select name="filter_borrowers.sort2" id="sort2">
314
           	<td><select name="filter_borrowers.sort2" id="sort2">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-1 / +1 lines)
Lines 683-689 function checkMultiHold() { Link Here
683
    [% IF SuspendHoldsIntranet %]<th>&nbsp;</th><!-- Suspend Holds Column Header -->[% END %]
683
    [% IF SuspendHoldsIntranet %]<th>&nbsp;</th><!-- Suspend Holds Column Header -->[% END %]
684
      </tr>
684
      </tr>
685
  [% FOREACH reserveloo IN biblioloo.reserveloop %]
685
  [% FOREACH reserveloo IN biblioloo.reserveloop %]
686
  [% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
686
        <tr>
687
        <td>
687
        <td>
688
          <input type="hidden" name="reserve_id" value="[% reserveloo.reserve_id %]" />
688
          <input type="hidden" name="reserve_id" value="[% reserveloo.reserve_id %]" />
689
          <input type="hidden" name="borrowernumber" value="[% reserveloo.borrowernumber %]" />
689
          <input type="hidden" name="borrowernumber" value="[% reserveloo.borrowernumber %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/acqui-search-result.tt (-4 lines)
Lines 27-37 function GetIt(aqbooksellerid,name) Link Here
27
		<th>Select</th>
27
		<th>Select</th>
28
	</tr>
28
	</tr>
29
	[% FOREACH loop_supplier IN loop_suppliers %]
29
	[% FOREACH loop_supplier IN loop_suppliers %]
30
        [% UNLESS ( loop.odd ) %]
31
        <tr class="highlight">
32
        [% ELSE %]
33
        <tr>
30
        <tr>
34
        [% END %]
35
			<td>[% loop_supplier.name %]</td>
31
			<td>[% loop_supplier.name %]</td>
36
			<td><a href="#" onclick="GetIt([% loop_supplier.aqbooksellerid %],$(this).parent().prev().text())">Choose</a></td>
32
			<td><a href="#" onclick="GetIt([% loop_supplier.aqbooksellerid %],$(this).parent().prev().text())">Choose</a></td>
37
		</tr>
33
		</tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt (-4 lines)
Lines 103-113 Link Here
103
			<th colspan="2">&nbsp;</th>
103
			<th colspan="2">&nbsp;</th>
104
        </tr>
104
        </tr>
105
    [% FOREACH subscriptions_loo IN subscriptions_loop %]
105
    [% FOREACH subscriptions_loo IN subscriptions_loop %]
106
        [% IF ( subscriptions_loo.toogle ) %]
107
        <tr class="highlight">
108
        [% ELSE %]
109
        <tr>
106
        <tr>
110
        [% END %]
111
            <td>
107
            <td>
112
                [% subscriptions_loo.issn %]
108
                [% subscriptions_loo.issn %]
113
            </td>
109
            </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt (-2 / +2 lines)
Lines 116-122 $(document).ready(function() { Link Here
116
  <th>Renew</th>
116
  <th>Renew</th>
117
</tr>
117
</tr>
118
[% FOREACH subscription IN subscriptions %]
118
[% FOREACH subscription IN subscriptions %]
119
    [% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
119
    <tr>
120
        <td><a href="subscription-detail.pl?subscriptionid=[% subscription.subscriptionid %]"># [% subscription.subscriptionid %]</a> </td>
120
        <td><a href="subscription-detail.pl?subscriptionid=[% subscription.subscriptionid %]"># [% subscription.subscriptionid %]</a> </td>
121
        <td>[% subscription.frequency.description %]</td>
121
        <td>[% subscription.frequency.description %]</td>
122
        <td>[% subscription.numberpattern.label %]</td>
122
        <td>[% subscription.numberpattern.label %]</td>
Lines 222-228 $(document).ready(function() { Link Here
222
          </thead>
222
          </thead>
223
          <tbody>
223
          <tbody>
224
      [% FOREACH serial IN year.serials %]
224
      [% FOREACH serial IN year.serials %]
225
    [% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
225
        <tr>
226
            [% IF ( CAN_user_serials_receive_serials ) %]
226
            [% IF ( CAN_user_serials_receive_serials ) %]
227
                <td>
227
                <td>
228
                  [% UNLESS CAN_user_serials_receive_serials %]
228
                  [% UNLESS CAN_user_serials_receive_serials %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt (-4 lines)
Lines 116-126 $(document).ready(function() { Link Here
116
		<th>Notes</th>
116
		<th>Notes</th>
117
	</tr>
117
	</tr>
118
[% FOREACH serialslis IN serialslist %]
118
[% FOREACH serialslis IN serialslist %]
119
    [% UNLESS ( loop.odd ) %]
120
    <tr class="highlight">
121
    [% ELSE %]
122
    <tr>
119
    <tr>
123
    [% END %]
124
        <td>
120
        <td>
125
            <input type="hidden" name="serialid" value="[% serialslis.serialid %]" />
121
            <input type="hidden" name="serialid" value="[% serialslis.serialid %]" />
126
            <input type="hidden" name="biblionumber" value="[% serialslis.biblionumber %]" />
122
            <input type="hidden" name="biblionumber" value="[% serialslis.biblionumber %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-1 / +1 lines)
Lines 505-511 h4.local_collapse a { font-size : 80%; text-decoration: none; } fieldset.brief o Link Here
505
    </thead>
505
    </thead>
506
        <tbody>
506
        <tbody>
507
            [% FOREACH suggestions_loo IN suggestion.suggestions_loop %]
507
            [% FOREACH suggestions_loo IN suggestion.suggestions_loop %]
508
            [% IF ( suggestions_loo.even ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
508
                <tr>
509
                <td>
509
                <td>
510
                    <input type="checkbox" name="edit_field" value="[% suggestions_loo.suggestionid %]" />
510
                    <input type="checkbox" name="edit_field" value="[% suggestions_loo.suggestionid %]" />
511
                </td>
511
                </td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt (-5 / +1 lines)
Lines 47-57 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
47
        </tr></thead>
47
        </tr></thead>
48
48
49
        [% FOREACH title IN titles %]
49
        [% FOREACH title IN titles %]
50
            [% IF ( title.even ) %]
50
            <tr>
51
                <tr class="highlight">
52
            [% ELSE %]
53
                <tr>
54
            [% END %]
55
            <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = title.biblionumber %][% title.title |html %][% FOREACH subtitl IN title.subtitle %] [% subtitl.subfield %][% END %]</a>
51
            <td>[% INCLUDE 'biblio-default-view.inc' biblionumber = title.biblionumber %][% title.title |html %][% FOREACH subtitl IN title.subtitle %] [% subtitl.subfield %][% END %]</a>
56
            [% title.author %]
52
            [% title.author %]
57
            <p>[% IF ( title.publishercode ) %]- [% title.publishercode|html %]
53
            <p>[% IF ( title.publishercode ) %]- [% title.publishercode|html %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt (-4 / +4 lines)
Lines 10-18 Link Here
10
        <tr>
10
        <tr>
11
            <td />
11
            <td />
12
            [% IF ( record.record_type == 'biblio' ) %]
12
            [% IF ( record.record_type == 'biblio' ) %]
13
                <td class="highlight" colspan="5">Matches biblio [% record_lis.match_id %] (score = [% record_lis.match_score %]): <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% record_lis.match_id %]">[% record_lis.match_citation %]</a></td>
13
                <td colspan="5">Matches biblio [% record_lis.match_id %] (score = [% record_lis.match_score %]): <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% record_lis.match_id %]">[% record_lis.match_citation %]</a></td>
14
            [% ELSIF ( record.record_type == 'auth' ) %]
14
            [% ELSIF ( record.record_type == 'auth' ) %]
15
                <td class="highlight" colspan="5">Matches authority [% record_lis.match_id %] (score = [% record_lis.match_score %]): <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% record_lis.match_id %]">[% record_lis.match_citation %]</a> |
15
                <td colspan="5">Matches authority [% record_lis.match_id %] (score = [% record_lis.match_score %]): <a href="/cgi-bin/koha/authorities/detail.pl?authid=[% record_lis.match_id %]">[% record_lis.match_citation %]</a> |
16
        <a href="/cgi-bin/koha/authorities/merge.pl?mergereference=breeding&authid=[% record_lis.match_id %]&authid=[% record_lis.import_record_id %]">Merge</a>
16
        <a href="/cgi-bin/koha/authorities/merge.pl?mergereference=breeding&authid=[% record_lis.match_id %]&authid=[% record_lis.import_record_id %]">Merge</a>
17
                </td>
17
                </td>
18
            [% END %]
18
            [% END %]
Lines 20-26 Link Here
20
    [% ELSIF ( record.record_type == 'auth') %]
20
    [% ELSIF ( record.record_type == 'auth') %]
21
        <tr data-authid="[% record_lis.import_record_id %]">
21
        <tr data-authid="[% record_lis.import_record_id %]">
22
            <td />
22
            <td />
23
            <td class="highlight" colspan="4"><a href="#" class="merge_auth">Search for a record to merge in a new window</a></td>
23
            <td  colspan="4"><a href="#" class="merge_auth">Search for a record to merge in a new window</a></td>
24
        </tr>
24
        </tr>
25
    [% END %]
25
    [% END %]
26
[% END %]
26
[% END %]
Lines 423-429 Page Link Here
423
    <th>Action</th>
423
    <th>Action</th>
424
  </tr>
424
  </tr>
425
  [% FOREACH batch_lis IN batch_list %]
425
  [% FOREACH batch_lis IN batch_list %]
426
  [% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
426
    <tr>
427
    <td>[% batch_lis.import_batch_id %]</td>
427
    <td>[% batch_lis.import_batch_id %]</td>
428
    <td><a href="[% batch_lis.script_name %]?import_batch_id=[% batch_lis.import_batch_id %]">[% batch_lis.file_name %]</a></td>
428
    <td><a href="[% batch_lis.script_name %]?import_batch_id=[% batch_lis.import_batch_id %]">[% batch_lis.file_name %]</a></td>
429
    <td>[% batch_lis.comments %]</td>
429
    <td>[% batch_lis.comments %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt (-1 / +1 lines)
Lines 171-177 Link Here
171
                            </thead>
171
                            </thead>
172
                            <tbody>
172
                            <tbody>
173
                            [% FOREACH loopro IN looprow %]
173
                            [% FOREACH loopro IN looprow %]
174
                                [% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %]
174
                                <tr>
175
                                    <td>[% loopro.timestamp %]</td>
175
                                    <td>[% loopro.timestamp %]</td>
176
                                    <td>
176
                                    <td>
177
                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopro.user %]" title="display detail for this librarian."> [% IF ( loopro.userfirstname ) || ( loopro.usersurname ) %][% loopro.userfirstname %] [% loopro.usersurname %] ([% loopro.user %]) [% ELSE %][% loopro.user %][% END %]</a>
177
                                        <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopro.user %]" title="display detail for this librarian."> [% IF ( loopro.userfirstname ) || ( loopro.usersurname ) %][% loopro.userfirstname %] [% loopro.usersurname %] ([% loopro.user %]) [% ELSE %][% loopro.user %][% END %]</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (-5 lines)
Lines 435-445 function placeHold () { Link Here
435
                 </th>
435
                 </th>
436
            </tr>
436
            </tr>
437
        [% FOREACH itemsloo IN itemsloop %]
437
        [% FOREACH itemsloo IN itemsloop %]
438
            [% UNLESS ( loop.odd ) %]
439
                <tr class="highlight">
440
            [% ELSE %]
441
                <tr>
438
                <tr>
442
            [% END %]
443
            [% IF itemsloop %]
439
            [% IF itemsloop %]
444
                <td>
440
                <td>
445
                    <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="biblionumber" />
441
                    <input type="checkbox" class="selection" value="[% itemsloo.biblionumber %]" name="biblionumber" />
446
- 

Return to bug 15927