Lines 1-6
Link Here
|
1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
|
|
2 |
[% USE Branches %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
<title>Koha › Tools › Notice triggers</title> |
4 |
<title>Koha › Tools › Overdue notice/status triggers</title> |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
5 |
|
6 |
|
6 |
<script type="text/javascript"> |
7 |
<script type="text/javascript"> |
Lines 25-31
$(document).ready(function() {
Link Here
|
25 |
[% INCLUDE 'header.inc' %] |
26 |
[% INCLUDE 'header.inc' %] |
26 |
[% INCLUDE 'cat-search.inc' %] |
27 |
[% INCLUDE 'cat-search.inc' %] |
27 |
|
28 |
|
28 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › Notice triggers</div> |
29 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › Overdue notice/status triggers</div> |
29 |
|
30 |
|
30 |
<div id="doc3" class="yui-t2"> |
31 |
<div id="doc3" class="yui-t2"> |
31 |
|
32 |
|
Lines 33-39
$(document).ready(function() {
Link Here
|
33 |
<div id="yui-main"> |
34 |
<div id="yui-main"> |
34 |
<div class="yui-b"> |
35 |
<div class="yui-b"> |
35 |
|
36 |
|
36 |
<h1>Defining [% IF ( branch ) %]overdue actions for [% branch %][% ELSE %]default overdue actions[% END %]</h1> |
37 |
<h1>Defining [% IF ( branch ) %]overdue actions for [% Branches.GetName( branch ) %][% ELSE %]default overdue actions[% END %]</h1> |
37 |
<div class="help"> |
38 |
<div class="help"> |
38 |
<p>Delay is the number of days after a checkout is due before an action is triggered. </p> |
39 |
<p>Delay is the number of days after a checkout is due before an action is triggered. </p> |
39 |
<p>If you want Koha to trigger an action (send a letter or restrict a member), a delay value is required.</p> |
40 |
<p>If you want Koha to trigger an action (send a letter or restrict a member), a delay value is required.</p> |
Lines 74-80
$(document).ready(function() {
Link Here
|
74 |
<form method="post" action="/cgi-bin/koha/tools/overduerules.pl"> |
75 |
<form method="post" action="/cgi-bin/koha/tools/overduerules.pl"> |
75 |
<input type="hidden" name="op" value="save" /> |
76 |
<input type="hidden" name="op" value="save" /> |
76 |
<input type="hidden" name="branch" value="[% branch %]" /> |
77 |
<input type="hidden" name="branch" value="[% branch %]" /> |
77 |
<h3>Rules for overdue actions: [% IF ( branch ) %][% branch %][% ELSE %] default library [% END %]</h3> |
78 |
<h3>Rules for overdue actions: [% IF ( branch ) %][% Branches.GetName( branch ) %][% ELSE %] default library [% END %]</h3> |
78 |
[% IF ( datasaved ) %]<div class="dialog message">Changes saved.</div> [% END %] |
79 |
[% IF ( datasaved ) %]<div class="dialog message">Changes saved.</div> [% END %] |
79 |
|
80 |
|
80 |
<div id="rulestabs" class="toptabs"> |
81 |
<div id="rulestabs" class="toptabs"> |
81 |
- |
|
|