95 lines
3.1 KiB
Text
95 lines
3.1 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Circulation › Set Library</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<style type="text/css">
|
|
.noshow {display: none;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'circ-search.inc' %]
|
|
|
|
<div id="breadcrumbs">
|
|
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
|
|
› <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
|
|
› <a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set Library</a>
|
|
</div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
|
|
[% IF ( updated ) %]
|
|
|
|
<h2>Update Succeeded</h2>
|
|
Updated:<ul>
|
|
[% FOREACH update IN updated %]
|
|
[% IF ( update.updated_branch ) %]
|
|
<li>Library: [% DEFAULT update.old_branch="?" %] ⇒ [% DEFAULT update.LoginBranchcode="?" %]</li>
|
|
[% ELSIF ( update.updated_printer ) %]
|
|
<!-- FIXME: <li>Printer: [% DEFAULT update.old_printer="?" %] ⇒ [% DEFAULT update.new_printer="?" %]</li> -->
|
|
[% ELSE %]
|
|
<li>ERROR - unknown</li>
|
|
[% END %]
|
|
[% END %]
|
|
</ul>
|
|
<form method="post" action="[% DEFAULT referer="/cgi-bin/koha/circ/circulation.pl" |html %]">
|
|
<div class="noshow">
|
|
[% FOREACH recycle_loo IN recycle_loop %]
|
|
<input type="text" name="[% recycle_loo.param %]" value="[% recycle_loo.value |html %]" />
|
|
[% END %]
|
|
</div>
|
|
<button type="submit">Continue</button>
|
|
</form>
|
|
|
|
[% ELSE %]
|
|
|
|
<form method="post" action="selectbranchprinter.pl">
|
|
<fieldset class="rows">
|
|
<legend>Set Library</legend>
|
|
<ol>
|
|
[% IF ( singleBranchMode ) %]
|
|
<li>Single Branch mode is ON.</li>
|
|
[% ELSE %]
|
|
<li><label for="branch">Choose library:</label>
|
|
<select name="branch" id="branch">
|
|
[% FOREACH branchloo IN branchloop %]
|
|
[% IF ( branchloo.selected ) %]
|
|
<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>
|
|
[% ELSE %]
|
|
<option value="[% branchloo.value %]">[% branchloo.branchname %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select></li>
|
|
[% END %]
|
|
<!--
|
|
[% IF ( printerloop ) %]
|
|
<li><label for="printer">Choose a network printer:</label>
|
|
<select name="printer" id="printer">
|
|
[% FOREACH printerloo IN printerloop %]
|
|
[% IF ( printerloo.selected ) %]
|
|
<option value="[% printerloo.value %]" selected="selected">[% printerloo.name %]</option>
|
|
[% ELSE %]
|
|
<option value="[% printerloo.value %]">[% printerloo.name %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select></li>
|
|
[% END %] -->
|
|
</ol>
|
|
</fieldset>
|
|
<fieldset class="action"><input type="submit" value="Submit" /></fieldset>
|
|
<div class="noshow">
|
|
[% FOREACH recycle_loo IN recycle_loop %]
|
|
<input type="text" name="[% recycle_loo.param %]" value="[% recycle_loo.value |html %]" />
|
|
[% END %]
|
|
<input type="hidden" name="oldreferer" value="[% DEFAULT referer="/cgi-bin/koha/circ/circulation.pl" |html %]" />
|
|
</div>
|
|
</form>
|
|
<!-- /updated -->
|
|
[% END %]
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|