Owen Leonard
c788d6205b
This patch corrects the title element on the download list page in the staff interface. The affected page should never be seen by the user because other error-handling should take precedence. In order to see it you have to set up such an error: - Log into the staff client as a user with existing lists. - Open the Lists page. - Open one of your lists in a new tab. - In the original tab, delete the list you opened. - In the tab showing the contents of the list, click the "Download" menu button and select an option. - You should be redirected to a page with an error message at the top. - The title of this page should be correct: "Download list." Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
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' %]
|
|
You do not have permission to view this list.
|
|
[% CASE 'does_not_exist' %]
|
|
This list does not exist.
|
|
[% CASE %]
|
|
[% m.code | html %]
|
|
[% 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>Download list</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>
|