Owen Leonard
115dd8752f
- improving behavior for users with no javascript - style improvements to list "toolbar" - adding new toolbar icons - adding display of subtitle to lists
44 lines
1.5 KiB
Cheetah
44 lines
1.5 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_IF NAME="LibraryNameTitle" --><!-- TMPL_VAR NAME="LibraryNameTitle" --><!-- TMPL_ELSE -->Koha Online<!-- /TMPL_IF --> Catalog › Sending Your List
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<script type="text/javascript">//<![CDATA[
|
|
$(document).ready(function(){
|
|
$(".close").html("Close this window");
|
|
});
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body style="padding: 1em;" id="sendbasket">
|
|
<div class="container"><!-- TMPL_IF NAME="email" -->
|
|
|
|
<!-- TMPL_IF NAME="SENT" -->
|
|
<h3>Message Sent</h3>
|
|
<p>The list was sent to: <!-- TMPL_VAR NAME="email" --></p>
|
|
<p><a class="focus close" href="/cgi-bin/koha/opac-shelves.pl">Back to lists</a></p>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="error" -->
|
|
<p>Problem sending the list...</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_ELSE -->
|
|
|
|
<form action="<!-- TMPL_VAR NAME="url" -->" method="post">
|
|
|
|
<fieldset class="rows">
|
|
<legend>Sending your list</legend>
|
|
<ol> <li>
|
|
<label for="email">Email Address:</label>
|
|
<input type="text" id="email" name="email" size="43" class="focus" />
|
|
</li>
|
|
<li>
|
|
<label for="comment">Comment:</label>
|
|
<textarea id="comment" name="comment" rows="4" cols="40"></textarea>
|
|
</li>
|
|
<li>
|
|
<input type="hidden" name="shelfid" value="<!-- TMPL_VAR NAME="shelfid" -->" />
|
|
</li></ol></fieldset>
|
|
<fieldset class="action"> <input type="submit" value="Send" /> <a class="cancel close" href="#">Cancel</a> </fieldset>
|
|
</form>
|
|
|
|
<!-- /TMPL_IF --></div>
|
|
</body>
|
|
</html>
|