Koha/koha-tmpl/opac-tmpl/prog/en/modules/opac-downloadshelf.tmpl
Koustubha Kale dcfeab4eee Adding id tags to some OPAC templates.
Many of the templates in OPAC, which deal with users data eg opac-account.tmpl, opac-passwd.tmpl etc do not have a id for the container div,
like opac-user.tmpl has an id userdetail. Having these id's makes it easier to customize with css.
This patch adds id's to most of the <div class="container"> tags.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
2011-02-09 15:20:45 +13:00

35 lines
1.4 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_IF NAME="LibraryNameTitle" --><!-- TMPL_VAR NAME="LibraryNameTitle" --><!-- TMPL_ELSE -->Koha Online<!-- /TMPL_IF --> Catalog &rsaquo; Download list<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<script type="text/javascript">//<![CDATA[
$(document).ready(function(){
$(".close").html("Close this window");
});
//]]>
</script>
</head>
<body id="opac-downloadlist" style="padding:1em;">
<div id="userdownloadshelf" class="container"><!-- TMPL_IF NAME="format" -->
<p>Your download should begin automatically.</p>
<!-- TMPL_ELSE -->
<form method="post" action="/cgi-bin/koha/opac-downloadshelf.pl">
<fieldset class="rows">
<ol><li><label for="format">Download list:</label>
<select name="format" id="format">
<option value="">-- Choose Format --</option>
<option value="iso2709">iso2709</option>
<option value="ris">RIS</option>
<option value="bibtex">BibTex</option>
<!-- TMPL_LOOP NAME="csv_profiles" -->
<option value="<!-- TMPL_VAR NAME="export_format_id" -->">CSV - <!-- TMPL_VAR NAME="profile" --></option>
<!-- /TMPL_LOOP -->
</select></li></ol>
</fieldset>
<fieldset class="action"> <input type="hidden" name="shelfid" value="<!-- TMPL_VAR NAME="shelfid" -->" />
<input type="submit" name="save" value="Go" /></fieldset>
</form>
<p><a class="button close" href="/cgi-bin/koha/opac-shelves.pl">Back to lists</a></p>
<!-- /TMPL_IF --></div>
</body>
</html>