Lines 1-8
Link Here
|
1 |
[% USE raw %] |
1 |
[% USE raw %] |
2 |
[% USE KohaDates %] |
2 |
[% USE KohaDates %] |
|
|
3 |
[% PROCESS 'i18n.inc' %] |
3 |
[% SET footerjs = 1 %] |
4 |
[% SET footerjs = 1 %] |
4 |
[% INCLUDE 'doc-head-open.inc' %] |
5 |
[% INCLUDE 'doc-head-open.inc' %] |
5 |
<title>Subscription history › Serials › Koha</title> |
6 |
<title>[% FILTER collapse %] |
|
|
7 |
[% t("Subscription history") | html %] › |
8 |
[% title | html %] › |
9 |
[% t("Serials") | html %] › |
10 |
[% t("Koha") | html %] |
11 |
[% END %]</title> |
6 |
[% INCLUDE 'doc-head-close.inc' %] |
12 |
[% INCLUDE 'doc-head-close.inc' %] |
7 |
</head> |
13 |
</head> |
8 |
|
14 |
|
Lines 31-37
Link Here
|
31 |
<main> |
37 |
<main> |
32 |
[% INCLUDE 'messages.inc' %] |
38 |
[% INCLUDE 'messages.inc' %] |
33 |
|
39 |
|
34 |
<h1>Subscription history for [% title | html %]</h1> |
40 |
<h1>Subscription history for <em>[% title | html %]</em></h1> |
35 |
|
41 |
|
36 |
<div id="subscription_form_history"> |
42 |
<div id="subscription_form_history"> |
37 |
<form method="post" action="/cgi-bin/koha/serials/subscription-history.pl"> |
43 |
<form method="post" action="/cgi-bin/koha/serials/subscription-history.pl"> |
Lines 39-77
Link Here
|
39 |
<input type="hidden" name="op" value="cud-mod" /> |
45 |
<input type="hidden" name="op" value="cud-mod" /> |
40 |
<input type="hidden" name="subscriptionid" value="[% subscriptionid | html %]" /> |
46 |
<input type="hidden" name="subscriptionid" value="[% subscriptionid | html %]" /> |
41 |
<p>Hint : you can update the serial history manually. This can be useful for an old subscription or to clean the existing history. Modify those fields with care, as future serial receive will continue to update them automatically.</p> |
47 |
<p>Hint : you can update the serial history manually. This can be useful for an old subscription or to clean the existing history. Modify those fields with care, as future serial receive will continue to update them automatically.</p> |
42 |
<table> |
48 |
<fieldset class="rows"> |
43 |
<tr> |
49 |
<table> |
44 |
<td>Subscription start date</td> |
50 |
<tr> |
45 |
<td> |
51 |
<td>Subscription start date</td> |
46 |
<input type="text" size="10" name="histstartdate" value="[% histstartdate | html %]" class="flatpickr" data-date_to="histenddate" /> (start date of the 1st subscription) |
52 |
<td> |
47 |
<div class="hint">[% INCLUDE 'date-format.inc' %]</div> |
53 |
<input type="text" size="10" name="histstartdate" value="[% histstartdate | html %]" class="flatpickr" data-date_to="histenddate" /> (start date of the 1st subscription) |
48 |
</td> |
54 |
<div class="hint">[% INCLUDE 'date-format.inc' %]</div> |
49 |
</tr> |
55 |
</td> |
50 |
<tr> |
56 |
</tr> |
51 |
<td>Subscription end date</td> |
57 |
<tr> |
52 |
<td> |
58 |
<td>Subscription end date</td> |
53 |
<input type="text" size="10" id="histenddate" name="histenddate" value="[% histenddate | html %]" class="flatpickr" />(if empty, subscription is still active) |
59 |
<td> |
54 |
<div class="hint">[% INCLUDE 'date-format.inc' %]</div> |
60 |
<input type="text" size="10" id="histenddate" name="histenddate" value="[% histenddate | html %]" class="flatpickr" />(if empty, subscription is still active) |
55 |
</td> |
61 |
<div class="hint">[% INCLUDE 'date-format.inc' %]</div> |
56 |
</tr> |
62 |
</td> |
57 |
<tr> |
63 |
</tr> |
58 |
<td>Received issues</td> |
64 |
<tr> |
59 |
<td><textarea name="receivedlist" cols="60" rows="5">[% receivedlist | html %]</textarea></td> |
65 |
<td>Received issues</td> |
60 |
</tr> |
66 |
<td><textarea name="receivedlist" cols="60" rows="5">[% receivedlist | html %]</textarea></td> |
61 |
<tr> |
67 |
</tr> |
62 |
<td>Missing issues</td> |
68 |
<tr> |
63 |
<td><textarea name="missinglist" cols="60" rows="5">[% missinglist | html %]</textarea></td> |
69 |
<td>Missing issues</td> |
64 |
</tr> |
70 |
<td><textarea name="missinglist" cols="60" rows="5">[% missinglist | html %]</textarea></td> |
65 |
<tr> |
71 |
</tr> |
66 |
<td>Note for OPAC</td> |
72 |
<tr> |
67 |
<td><textarea name="opacnote" cols="60" rows="5">[% opacnote | html %]</textarea></td> |
73 |
<td>Note for OPAC</td> |
68 |
</tr> |
74 |
<td><textarea name="opacnote" cols="60" rows="5">[% opacnote | html %]</textarea></td> |
69 |
<tr> |
75 |
</tr> |
70 |
<td>Note for staff</td> |
76 |
<tr> |
71 |
<td><textarea name="librariannote" cols="60" rows="5">[% librariannote | html %]</textarea></td> |
77 |
<td>Note for staff</td> |
72 |
</tr> |
78 |
<td><textarea name="librariannote" cols="60" rows="5">[% librariannote | html %]</textarea></td> |
73 |
</table> |
79 |
</tr> |
74 |
<input type="submit" class="btn btn-primary" value="Save subscription history" /> |
80 |
</table> |
|
|
81 |
</fieldset> |
82 |
<fieldset class="action"> |
83 |
<input type="submit" class="btn btn-primary" value="Save subscription history" /> |
84 |
</fieldset> |
75 |
</form> |
85 |
</form> |
76 |
</div> |
86 |
</div> |
77 |
|
87 |
|