Lines 49-55
Link Here
|
49 |
[% IF ( delete ) %] |
49 |
[% IF ( delete ) %] |
50 |
<div class="dialog alert"> |
50 |
<div class="dialog alert"> |
51 |
<h3>You are about to delete [% serialnumber | html %] serial(s). Do you want to continue?</h3> |
51 |
<h3>You are about to delete [% serialnumber | html %] serial(s). Do you want to continue?</h3> |
52 |
<form action="/cgi-bin/koha/serials/serials-collection.pl/#"> |
52 |
<form action="/cgi-bin/koha/serials/serials-collection.pl"> |
53 |
[% IF countitems > 0 %] |
53 |
[% IF countitems > 0 %] |
54 |
<h5>Number of items available: [% countitems | html %]</h5> |
54 |
<h5>Number of items available: [% countitems | html %]</h5> |
55 |
<p> |
55 |
<p> |
Lines 95-101
Link Here
|
95 |
</tr> |
95 |
</tr> |
96 |
[% FOREACH subscription IN subscriptions %] |
96 |
[% FOREACH subscription IN subscriptions %] |
97 |
<tr> |
97 |
<tr> |
98 |
<td><a href="subscription-detail.pl?subscriptionid=[% subscription.subscriptionid | uri %]"># [% subscription.subscriptionid | html %]</a> </td> |
98 |
<td><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscription.subscriptionid | uri %]"># [% subscription.subscriptionid | html %]</a> </td> |
99 |
<td>[% subscription.frequency.description | html %]</td> |
99 |
<td>[% subscription.frequency.description | html %]</td> |
100 |
<td>[% subscription.numberpattern.label | html %]</td> |
100 |
<td>[% subscription.numberpattern.label | html %]</td> |
101 |
<td>[% IF subscription.branchcode %][% Branches.GetName( subscription.branchcode ) | html %][% END %]</td> |
101 |
<td>[% IF subscription.branchcode %][% Branches.GetName( subscription.branchcode ) | html %][% END %]</td> |
102 |
- |
|
|