Koha/koha-tmpl/intranet-tmpl/prog/en/modules/admin/clone-rules.tt
Owen Leonard 92544ea10d Bug 15941 - The template for cloning circulation and fine rules says "issuing rules"
The template for cloning circulation and fine rules should use the
phrase "circulation and fine rules" instead of "issuing rules."

Also changed: Added "Cancel" link to return the user to the circulation
and fine rules page.

To test, navigate directly to /cgi-bin/koha/admin/clone-rules.pl.

The page title, breadcrumbs, and heading should all use the phrase
"circulation and fine rules."

Signed-off-by: Frédéric Demians <f.demians@tamil.fr>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
2016-03-07 18:01:10 +00:00

81 lines
3 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Administration &rsaquo; Circulation and fine rules &rsaquo; Clone circulation and fine rules</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="admin_clone-rules" class="admin">
[% INCLUDE 'header.inc' %]
[% INCLUDE 'cat-search.inc' %]
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; <a href="/cgi-bin/koha/admin/smart-rules.pl">Circulation and fine rules</a> &rsaquo; 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 ( frombranchname || tobranchname ) %]
[% IF ( frombranchname ) %] from "[% frombranchname %]"[% END %]
[% IF ( tobranchname ) %] to "[% tobranchname %]"[% END %]
[% 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>
[% 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>
[% 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>
[% 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>
[% IF ( frombranch ) %]<input type="hidden" name="frombranch" value="[% frombranch %]" />[% END %]
</fieldset>
[% END %]
<input type="submit" value="Submit" />
<a href="/cgi-bin/koha/admin/smart-rules.pl" class="cancel">Cancel</a>
</form>
[% END %]
</div>
</div>
<div class="yui-b">
[% INCLUDE 'admin-menu.inc' %]
</div>
</div>
[% INCLUDE 'intranet-bottom.inc' %]