Koha/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/downloadshelf.tmpl
Matthias Meusburger 8dd9e34b25 1110 : Balance carts and lists, follow-up : Added Opac lists features to admin lists
Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com>
2009-09-30 11:30:35 +02:00

33 lines
1.1 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Download shelf</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_IF NAME="format" -->
Your Download should automatically start
<!-- TMPL_ELSE -->
<div id="export" class="detailtagcell"> <form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
<fieldset class="row">
<legend>Download Shelf</legend>
<label for="format">Format : </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>
<input type="hidden" name="shelfid" value="<!-- TMPL_VAR NAME="shelfid" -->" />
<input type="submit" name="save" value="Go" />
</fieldset>
</form>
<p><a class="button" href="#" onclick="javascript:window.close()">Close this window</a></p>
</div>
<!-- /TMPL_IF -->
</body>
</html>