|
Lines 70-75
$(document).ready(function() {
Link Here
|
| 70 |
[% INCLUDE 'header.inc' %] |
70 |
[% INCLUDE 'header.inc' %] |
| 71 |
[% INCLUDE 'serials-search.inc' %] |
71 |
[% INCLUDE 'serials-search.inc' %] |
| 72 |
|
72 |
|
|
|
73 |
[% BLOCK translate_frequnit %] |
| 74 |
[% SWITCH frequnit %] |
| 75 |
[% CASE 'day' %] day |
| 76 |
[% CASE 'week' %] week |
| 77 |
[% CASE 'month' %] month |
| 78 |
[% CASE 'year' %] year |
| 79 |
[% END %] |
| 80 |
[% END %] |
| 81 |
|
| 73 |
<div id="breadcrumbs"> |
82 |
<div id="breadcrumbs"> |
| 74 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> › |
83 |
<a href="/cgi-bin/koha/mainpage.pl">Home</a> › |
| 75 |
<a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> › |
84 |
<a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> › |
|
Lines 110-116
$(document).ready(function() {
Link Here
|
| 110 |
[% ELSE %] |
119 |
[% ELSE %] |
| 111 |
<option value="[% unit.val %]"> |
120 |
<option value="[% unit.val %]"> |
| 112 |
[% END %] |
121 |
[% END %] |
| 113 |
[% unit.val %] |
122 |
[% PROCESS translate_frequnit frequnit=unit.val %] |
| 114 |
</option> |
123 |
</option> |
| 115 |
[% END %] |
124 |
[% END %] |
| 116 |
</select> |
125 |
</select> |
|
Lines 189-195
$(document).ready(function() {
Link Here
|
| 189 |
[% FOREACH frequency IN frequencies_loop %] |
198 |
[% FOREACH frequency IN frequencies_loop %] |
| 190 |
<tr> |
199 |
<tr> |
| 191 |
<td>[% frequency.description %]</td> |
200 |
<td>[% frequency.description %]</td> |
| 192 |
<td>[% frequency.unit %]</td> |
201 |
<td>[% PROCESS translate_frequnit frequnit=frequency.unit %]</td> |
| 193 |
<td>[% frequency.issuesperunit %]</td> |
202 |
<td>[% frequency.issuesperunit %]</td> |
| 194 |
<td>[% frequency.unitsperissue %]</td> |
203 |
<td>[% frequency.unitsperissue %]</td> |
| 195 |
<td>[% frequency.displayorder %]</td> |
204 |
<td>[% frequency.displayorder %]</td> |
| 196 |
- |
|
|