Owen Leonard
a46b3b4de0
Some scripts pass a template variable to facilitate an alternate table row class for styling. Other use the 'IF (loop.odd)' construction. I think we're at the point where the CSS3 :nth-child() selector is widely-supported enough that we can do without template-based solutions: http://caniuse.com/#feat=css-sel3 This patch adds such a selector to the staff client CSS and removes the corresponding template markup from Administration pages. The last in this series of patches will remove the redundant CSS. Also in this patch: a few minor markup corrections. To test, apply the patch and clear your browser cache if necessary. View the following pages and confirm that alternate table row highlighting works as before: - Administration -> Budgets - Acquisitions -> Vendor -> Contracts - Administration -> Budgets -> Budget -> Planning - Administration -> Authority types - Administration -> Authority types -> MARC structure - Administration -> Authority types -> MARC structure -> subfields - Administration -> MARC bibliographic framework - Administration -> MARC bibliographic framework -> MARC structure - Administration -> MARC bibliographic framework -> MARC structure -> Subfields - Administration -> Libraries and groups - Administration -> Cities and towns - Administration -> Classification sources - Administration -> Circulation and fines rules - Administration -> Currencies and exchange rates - Administration -> Item types - Administration -> Koha to MARC mapping - Administration -> System preferences -> Local use - Administration -> Z39.50 client targets Signed-off-by: Nick Clemens <nick@quecheelibrary.org> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
80 lines
2.8 KiB
Text
80 lines
2.8 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Administration › Issuing rules › Clone issuing 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> › <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> › <a href="/cgi-bin/koha/admin/smart-rules.pl">Issuing rules</a> › Clone issuing rules</div>
|
|
|
|
<div id="doc3" class="yui-t1">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
<h2>Cloning issuing 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 issuing 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 issuing rules</a>
|
|
[% ELSE %]
|
|
|
|
<p class="help">Use carefully ! If the destination library already has issuing 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" />
|
|
</form>
|
|
|
|
[% END %]
|
|
</div>
|
|
|
|
</div>
|
|
<div class="yui-b">
|
|
[% INCLUDE 'admin-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|