|
Lines 97-103
$(document).ready(function() {
Link Here
|
| 97 |
[% IF (new) %] |
97 |
[% IF (new) %] |
| 98 |
<h1>New frequency</h1> |
98 |
<h1>New frequency</h1> |
| 99 |
[% ELSE %] |
99 |
[% ELSE %] |
| 100 |
<h1>Modify frequency: [% description %]</h1> |
100 |
<h1>Edit frequency: [% description %]</h1> |
| 101 |
[% END %] |
101 |
[% END %] |
| 102 |
<form action="/cgi-bin/koha/serials/subscription-frequencies.pl" method="post" onsubmit="return check_form();"> |
102 |
<form action="/cgi-bin/koha/serials/subscription-frequencies.pl" method="post" onsubmit="return check_form();"> |
| 103 |
[% IF (modify) %] |
103 |
[% IF (modify) %] |
|
Lines 198-204
$(document).ready(function() {
Link Here
|
| 198 |
<th>Issues per unit</th> |
198 |
<th>Issues per unit</th> |
| 199 |
<th>Units per issue</th> |
199 |
<th>Units per issue</th> |
| 200 |
<th>Display order</th> |
200 |
<th>Display order</th> |
| 201 |
<th> </th> |
201 |
<th>Actions</th> |
| 202 |
</tr> |
202 |
</tr> |
| 203 |
</thead> |
203 |
</thead> |
| 204 |
<tbody> |
204 |
<tbody> |
|
Lines 209-217
$(document).ready(function() {
Link Here
|
| 209 |
<td>[% frequency.issuesperunit %]</td> |
209 |
<td>[% frequency.issuesperunit %]</td> |
| 210 |
<td>[% frequency.unitsperissue %]</td> |
210 |
<td>[% frequency.unitsperissue %]</td> |
| 211 |
<td>[% frequency.displayorder %]</td> |
211 |
<td>[% frequency.displayorder %]</td> |
| 212 |
<td> |
212 |
<td class="actions"> |
| 213 |
<a href="/cgi-bin/koha/serials/subscription-frequencies.pl?op=modify&frequencyid=[% frequency.id %]">Modify</a> | |
213 |
<a class="btn btn-mini" href="/cgi-bin/koha/serials/subscription-frequencies.pl?op=modify&frequencyid=[% frequency.id %]"><i class="fa fa-pencil"></i> Edit</a> |
| 214 |
<a class="delete_frequency" href="/cgi-bin/koha/serials/subscription-frequencies.pl?op=del&frequencyid=[% frequency.id %]">Delete</a> |
214 |
<a class="delete_frequency btn btn-mini" href="/cgi-bin/koha/serials/subscription-frequencies.pl?op=del&frequencyid=[% frequency.id %]"><i class="fa fa-trash"></i> Delete</a> |
| 215 |
</td> |
215 |
</td> |
| 216 |
</tr> |
216 |
</tr> |
| 217 |
[% END %] |
217 |
[% END %] |
| 218 |
- |
|
|