Lines 30-36
$(document).ready(function() {
Link Here
|
30 |
<h1>Defining [% IF ( branch ) %]overdue actions for [% branch %][% ELSE %]default overdue actions[% END %]</h1> |
30 |
<h1>Defining [% IF ( branch ) %]overdue actions for [% branch %][% ELSE %]default overdue actions[% END %]</h1> |
31 |
<div class="help"> |
31 |
<div class="help"> |
32 |
<p>Delay is the number of days after an checkout is due before an action is triggered. </p> |
32 |
<p>Delay is the number of days after an checkout is due before an action is triggered. </p> |
33 |
<p>If you want Koha to trigger an action (send a letter or debar member), a delay value is required.</p> |
33 |
<p>If you want Koha to trigger an action (send a letter or restrict a member), a delay value is required.</p> |
34 |
<p>Columns must be filled left to right: if the first column is blank, other columns will be ignored. </p> |
34 |
<p>Columns must be filled left to right: if the first column is blank, other columns will be ignored. </p> |
35 |
</div> |
35 |
</div> |
36 |
<form method="post" action="/cgi-bin/koha/tools/overduerules.pl" id="selectlibrary"> |
36 |
<form method="post" action="/cgi-bin/koha/tools/overduerules.pl" id="selectlibrary"> |
Lines 56-62
$(document).ready(function() {
Link Here
|
56 |
<li>Delay [% ERRORDELAY %] for [% BORERR %] patron category has some unexpected characters. There should be only numerical characters. </li> |
56 |
<li>Delay [% ERRORDELAY %] for [% BORERR %] patron category has some unexpected characters. There should be only numerical characters. </li> |
57 |
[% END %] |
57 |
[% END %] |
58 |
[% IF ( ERRORUSELESSDELAY ) %] |
58 |
[% IF ( ERRORUSELESSDELAY ) %] |
59 |
<li>No letter or debar action specified for delay [% ERRORUSELESSDELAY %] for [% BORERR %] patron category. If a delay is supplied, either a letter, debar action, or both should be specified.</li> |
59 |
<li>No letter or restriction action specified for delay [% ERRORUSELESSDELAY %] for [% BORERR %] patron category. If a delay is supplied, either a letter, restrict action, or both should be specified.</li> |
60 |
[% END %] |
60 |
[% END %] |
61 |
[% IF ( ERRORORDER ) %] |
61 |
[% IF ( ERRORORDER ) %] |
62 |
<li>The first notice's delay should be less than the second, which should be less than the third for the <strong>[% BORERR %]</strong> patron category </li> |
62 |
<li>The first notice's delay should be less than the second, which should be less than the third for the <strong>[% BORERR %]</strong> patron category </li> |
Lines 79-85
$(document).ready(function() {
Link Here
|
79 |
</ul> |
79 |
</ul> |
80 |
|
80 |
|
81 |
<div id="first"><table> |
81 |
<div id="first"><table> |
82 |
<tr><th> </th><th scope="col">Delay</th><th scope="col">First Letter</th><th scope="col">Debar</th></tr> |
82 |
<tr><th> </th><th scope="col">Delay</th><th scope="col">First Letter</th><th scope="col">Restrict</th></tr> |
83 |
[% FOREACH tabl IN table %] |
83 |
[% FOREACH tabl IN table %] |
84 |
[% UNLESS ( loop.odd ) %] |
84 |
[% UNLESS ( loop.odd ) %] |
85 |
<tr class="highlight"> |
85 |
<tr class="highlight"> |
Lines 119-125
$(document).ready(function() {
Link Here
|
119 |
</div> |
119 |
</div> |
120 |
|
120 |
|
121 |
<div id="second"><table> |
121 |
<div id="second"><table> |
122 |
<tr><th> </th><th scope="col">Delay</th><th scope="col">Second Letter</th><th scope="col">Debar</th></tr> |
122 |
<tr><th> </th><th scope="col">Delay</th><th scope="col">Second Letter</th><th scope="col">Restrict</th></tr> |
123 |
[% FOREACH tabl IN table %] |
123 |
[% FOREACH tabl IN table %] |
124 |
[% UNLESS ( loop.odd ) %] |
124 |
[% UNLESS ( loop.odd ) %] |
125 |
<tr class="highlight"> |
125 |
<tr class="highlight"> |
Lines 159-165
$(document).ready(function() {
Link Here
|
159 |
</div> |
159 |
</div> |
160 |
|
160 |
|
161 |
<div id="third"><table> |
161 |
<div id="third"><table> |
162 |
<tr><th> </th><th scope="col">Delay</th><th scope="col">Third Letter</th><th scope="col">Debar</th></tr> |
162 |
<tr><th> </th><th scope="col">Delay</th><th scope="col">Third Letter</th><th scope="col">Restrict</th></tr> |
163 |
[% FOREACH tabl IN table %] |
163 |
[% FOREACH tabl IN table %] |
164 |
[% UNLESS ( loop.odd ) %] |
164 |
[% UNLESS ( loop.odd ) %] |
165 |
<tr class="highlight"> |
165 |
<tr class="highlight"> |
166 |
- |
|
|