Owen Leonard
8669dc1548
This patch makes two minor corrections: 1. The item types localization modal redirect problem has been fixed by excluding the anti-clickjack code from executing in the footer. 2. The sidebar menu highlighting script has been modified to correctly handle the clone-rules page. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
73 lines
2.9 KiB
Text
73 lines
2.9 KiB
Text
[% USE Branches %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Administration › Circulation and fine rules › Clone circulation and fine rules</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="admin_clone-rules" class="admin">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'prefs-admin-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › <a href="/cgi-bin/koha/admin/smart-rules.pl">Circulation and fine rules</a> › Clone circulation and fine rules</div>
|
|
|
|
<div id="doc3" class="yui-t1">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
<h2>Cloning circulation and fine rules
|
|
[% IF frombranch %] from "[% Branches.GetName( frombranch ) %]"[% END %]
|
|
[% IF tobranch %] to "[% Branches.GetName( tobranch ) %]"[% END %]
|
|
</h2>
|
|
|
|
[% IF ( result ) %]
|
|
[% IF ( error ) %]
|
|
<div class="dialog alert">Cloning of circulation and fine rules failed!</div>
|
|
[% ELSE %]
|
|
<div class="dialog message"><p>The rules have been cloned.</p></div>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/admin/smart-rules.pl">Return to circulation and fine rules</a>
|
|
[% ELSE %]
|
|
|
|
<p class="help">Use carefully! If the destination library already has circulation and fine rules, they will be deleted without warning!</p>
|
|
<form action="/cgi-bin/koha/admin/clone-rules.pl" method="post">
|
|
[% UNLESS ( frombranch ) %]
|
|
<fieldset>
|
|
<legend>Please choose a library to clone rules from:</legend>
|
|
<label for="frombranch">Source library:</label>
|
|
<select name="frombranch" id="frombranch">
|
|
<option value="">Default</option>
|
|
[% PROCESS options_for_libraries libraries => Branches.all() %]
|
|
</select>
|
|
[% IF ( tobranch ) %]<input type="hidden" name="tobranch" value="[% tobranch %]" />[% END %]
|
|
</fieldset>
|
|
[% END %]
|
|
|
|
[% UNLESS ( tobranch ) %]
|
|
<fieldset>
|
|
<legend>Please choose the library to clone the rules to:</legend>
|
|
<label for="tobranch">Destination library:</label>
|
|
<select name="tobranch" id="tobranch">
|
|
<option value="">Default</option>
|
|
[% PROCESS options_for_libraries libraries => Branches.all() %]
|
|
</select>
|
|
[% IF ( frombranch ) %]<input type="hidden" name="frombranch" value="[% frombranch %]" />[% END %]
|
|
</fieldset>
|
|
[% END %]
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
|
|
[% END %]
|
|
</div>
|
|
|
|
</div>
|
|
<div class="yui-b">
|
|
[% INCLUDE 'admin-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
<script type="text/javascript" src="[% interface %]/[% theme %]/js/admin-menu.js"></script>
|
|
[% END %]
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|