Wainui Witika-Park
275875c3b9
Changed each of the pages in the tools and virtualshelves folders to have one <h1> tag showing that describes the page, rather than the <h1> describing the logo. The hierarchy of heading tags may be broken in many pages, but this will be dealt with in an additional bug. To test: 1) Go to the Staff Client 2) Apply patch 3) Go to each of the pages in the tools and virtualshelves folders and check that they have an obvious and descriptive heading 4) Ensure that the heading in the page is <h1> Sponsored-by: Catalyst IT Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
49 lines
1.6 KiB
Text
49 lines
1.6 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Download list › Koha</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="lists_downloadshelf" class="lists" style="padding:1em;">
|
|
|
|
[% FOR m IN messages %]
|
|
<div class="dialog [% m.type | html %]">
|
|
[% SWITCH m.code %]
|
|
[% CASE 'unauthorized' %]
|
|
<span>You do not have permission to view this list.</span>
|
|
[% CASE 'does_not_exist' %]
|
|
<span>This list does not exist.</span>
|
|
[% CASE %]
|
|
<span>[% m.code | html %]</span>
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
|
|
|
|
|
|
[% IF ( format ) %]
|
|
<p>Your download should begin automatically.</p>
|
|
[% ELSE %]
|
|
<div id="export" class="detailtagcell"> <form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
|
|
<form method="post" action="/cgi-bin/koha/virtualshelves/downloadshelf.pl">
|
|
<fieldset class="rows">
|
|
<legend><h1>Download list</h1></legend>
|
|
<ol><li>
|
|
<label for="format">Format: </label>
|
|
<select name="format" id="format">
|
|
<option value="">-- Choose format --</option>
|
|
<option value="iso2709">MARC</option>
|
|
<option value="ris">RIS</option>
|
|
<option value="bibtex">BibTex</option>
|
|
[% FOREACH csv_profile IN csv_profiles %]
|
|
<option value="[% csv_profile.export_format_id | html %]">CSV - [% csv_profile.profile | html %]</option>
|
|
[% END %]
|
|
</select>
|
|
</li></ol>
|
|
</fieldset>
|
|
<fieldset class="action"><input type="hidden" name="shelfid" value="[% shelfid | html %]" />
|
|
<input type="submit" name="save" value="Save" /> <a class="cancel close" href="#">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
|
|
[% END %]
|
|
</body>
|
|
</html>
|