Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tmpl
Owen Leonard c6131c4429 Corrections for XHTML compliance, again.
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:18 -05:00

145 lines
4.8 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Serials Expiration</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- Additions to enable Calendar system -->
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css" />
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-en.js"></script>
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
<!-- End of additions -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
<!-- TMPL_INCLUDE NAME="menu-serials.inc" -->
<h1>Check expiration</h1>
<fieldset>
<legend>Select record which will expire</legend>
<form name="f"
action="/cgi-bin/koha/serials/checkexpiration.pl"
method="post"
onsubmit="return CheckForm(this);">
<label for="title">Filter on title&nbsp;</label>
<input id="title" type="texte" name="title" size="15" value="<!--TMPL_VAR NAME="title"-->" />
<br />
<label for="issn">Filter on ISSN</label>
<input id="issn" type="texte" name="issn" size="15" value="<!-- TMPL_VAR NAME="issn"-->" />
<br />
<label for="date">with expiration date before</label>
<input id="date" type="texte" name="date" size="10" value="<!-- TMPL_VAR NAME="date"-->" />
<script type="text/javascript">
Calendar.setup(
{
inputField : "date",
ifFormat : "%Y-%m-%d",
}
);
</script>
<input type="submit" value="Search" />
</form>
</fieldset>
<!-- TMPL_IF NAME="subscriptions_loop"-->
<p>
<b><!-- TMPL_VAR NAME="numsubscription"--></b> subscription(s)
<!-- TMPL_IF NAME="title"-->
with title like <b><!-- TMPL_VAR NAME="title"--></b>
<!-- TMPL_IF NAME="issn"-->and <!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="issn"-->
issn like <b><!-- TMPL_VAR NAME="issn" --></b>
<!-- /TMPL_IF -->
will expirate bebore <b><!-- TMPL_VAR NAME="date" --></b>
</p>
<div class="searchresults">
<table>
<tr>
<th>
issn
</th>
<th>
title
</th>
<th>
Note
</th>
<th>
Expiration date
</th>
</tr>
<!-- TMPL_LOOP NAME="subscriptions_loop"-->
<!-- TMPL_IF NAME="toogle"-->
<tr class="highlight">
<!-- TMPL_ELSE -->
<tr>
<!-- /TMPL_IF -->
<td>
<!-- TMPL_VAR NAME="issn" -->
</td>
<td>
<!-- TMPL_IF name="BiblioDefaultViewmarc" -->
<a class="title" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
<!-- TMPL_IF NAME="title"-->
<!-- TMPL_VAR NAME="title" -->
<!-- TMPL_ELSE -->
|
<!-- /TMPL_IF -->
</a>
<!-- TMPL_ELSE -->
<!-- TMPL_IF name="BiblioDefaultViewisbd" -->
<a class="title" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
<!-- TMPL_IF NAME="title"-->
<!-- TMPL_VAR NAME="title" -->
<!-- TMPL_ELSE -->
|
<!-- /TMPL_IF -->
</a>
<!-- TMPL_ELSE -->
<a class="title" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
<!-- TMPL_IF NAME="title"-->
<!-- TMPL_VAR NAME="title" -->
<!-- TMPL_ELSE -->
|
<!-- /TMPL_IF -->
</a>
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
</td>
<td>
<!-- TMPL_VAR NAME="notes"-->
</td>
<td>
<!-- TMPL_VAR NAME="expirationdate" -->
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
</div>
<!-- /TMPL_IF -->
<script type="text/javascript" language="JavaScript">
// <![CDATA[
document.f.datenumber.focus();
/**
* Function CheckForm
* This function checks the form before submit
*/
function CheckForm(form){
if(form.datenumber.value){
return true;
}
else {
alert("you must write a date !");
document.f.datenumber.focus();
return false;
}
}
// ]]>
</script>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->