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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt (-3 / +7 lines)
Lines 2-7 Link Here
2
<title>Koha &rsaquo; Serials &rsaquo; Check expiration</title>
2
<title>Koha &rsaquo; Serials &rsaquo; Check expiration</title>
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'calendar.inc' %]
4
[% INCLUDE 'calendar.inc' %]
5
[% USE Branches %]
5
<script type="text/javascript" language="JavaScript">
6
<script type="text/javascript" language="JavaScript">
6
// <![CDATA[
7
// <![CDATA[
7
    /**
8
    /**
Lines 43-49 Link Here
43
44
44
    <form name="f" action="/cgi-bin/koha/serials/checkexpiration.pl" method="post" onsubmit="return CheckForm(this);">
45
    <form name="f" action="/cgi-bin/koha/serials/checkexpiration.pl" method="post" onsubmit="return CheckForm(this);">
45
<fieldset class="rows">
46
<fieldset class="rows">
46
    <legend>Filter results :</legend>
47
    <legend>Filter results:</legend>
47
    
48
    
48
         <ol>
49
         <ol>
49
        <li><label for="title">Title:</label>
50
        <li><label for="title">Title:</label>
Lines 52-58 Link Here
52
        <li><label for="issn">ISSN:</label>
53
        <li><label for="issn">ISSN:</label>
53
        <input id="issn" type="text" name="issn" size="15" value="[% issn %]" /></li>
54
        <input id="issn" type="text" name="issn" size="15" value="[% issn %]" /></li>
54
        [% IF (branches_loop.size) %]
55
        [% IF (branches_loop.size) %]
55
        <li><label for="branch">Branch:</label>
56
        <li><label for="branch">Library:</label>
56
        <select id="branch" name="branch">
57
        <select id="branch" name="branch">
57
            <option value="">All</option>
58
            <option value="">All</option>
58
            [% FOREACH branch IN branches_loop %]
59
            [% FOREACH branch IN branches_loop %]
Lines 94-99 Link Here
94
        <tr>
95
        <tr>
95
            <th>ISSN</th>
96
            <th>ISSN</th>
96
            <th>Title</th>
97
            <th>Title</th>
98
            [% IF ( branches_loop.size ) %]<th>Library</th>[% END %]
97
            <th>OPAC note</th>
99
            <th>OPAC note</th>
98
            <th>Nonpublic note</th>
100
            <th>Nonpublic note</th>
99
            <th>Expiration date</th>
101
            <th>Expiration date</th>
Lines 115-120 Link Here
115
                [% END %]
117
                [% END %]
116
                </a>
118
                </a>
117
            </td>
119
            </td>
120
            [% IF ( branches_loop.size ) %]<td>
121
                [% Branches.GetName( subscriptions_loo.branchcode ) %]
122
            </td>[% END %]
118
            <td>
123
            <td>
119
                [% subscriptions_loo.notes %]
124
                [% subscriptions_loo.notes %]
120
            </td>
125
            </td>
121
- 

Return to bug 8436