Bug 23681: Fix QA issues
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / includes / borrower_debarments.inc
1 [% USE raw %]
2 [% USE Koha %]
3 <div id="reldebarments">
4     [% IF ( not debarments.defined || debarments.size < 1 ) %]
5         <p>Patron is currently unrestricted.</p>
6     [% ELSE %]
7         <table>
8             <thead>
9                 <tr>
10                      <th>Type</th>
11                      <th>Comment</th>
12                      <th>Expiration</th>
13                      <th>Created</th>
14                      [% IF CAN_user_borrowers_edit_borrowers && CAN_user_circulate_manage_restrictions %]
15                          <th>&nbsp;</th>
16                      [% END %]
17                 </tr>
18             </thead>
19             <tbody>
20                 [% FOREACH d IN debarments %]
21                     [% dtype = d.type %]
22                     <tr>
23                         <td>
24                             [% ddisplay = restriction_types.$dtype.display_text %]
25                             [% SWITCH ddisplay %]
26                                 [% CASE 'Manual' %]Manual
27                                 [% CASE 'Overdues' %]Overdues
28                                 [% CASE 'Suspension' %]Suspension
29                                 [% CASE 'Discharge' %]Discharge
30                                 [% CASE %][% ddisplay | html %]
31                             [% END %]
32                         </td>
33                         <td>
34                             [% IF d.comment.search('OVERDUES_PROCESS') %]
35                                 <span>Restriction added by overdues process [% d.comment.remove('OVERDUES_PROCESS ') | $raw %]</span>
36                             [% ELSE %]
37                                 [% d.comment | $raw %]
38                             [% END %]
39                         </td>
40                         <td>[% IF d.expiration %] [% d.expiration | $KohaDates %] [% ELSE %] <em>Indefinite</em> [% END %]</td>
41                         <td>[% d.created | $KohaDates %]</td>
42                         [% IF CAN_user_borrowers_edit_borrowers && CAN_user_circulate_manage_restrictions %]
43                             <td>
44                                 <a class="remove_restriction btn btn-default btn-xs" href="/cgi-bin/koha/members/mod_debarment.pl?borrowernumber=[% patron.borrowernumber | html %]&amp;borrower_debarment_id=[% d.borrower_debarment_id | html %]&amp;action=del">
45                                     <i class="fa fa-trash"></i> Remove
46                                 </a>
47                             </td>
48                         [% END %]
49                     </tr>
50                 [% END %]
51             </tbody>
52         </table>
53     [% END %]
54     [% IF CAN_user_borrowers_edit_borrowers && CAN_user_circulate_manage_restrictions %]
55         <p><a href="#" id="add_manual_restriction"><i class="fa fa-plus"></i> Add manual restriction</a></p>
56         <form method="post" action="/cgi-bin/koha/members/mod_debarment.pl" class="clearfix">
57             <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
58             <input type="hidden" name="action" value="add" />
59             <fieldset class="rows" id="manual_restriction_form">
60                 <legend>Add manual restriction</legend>
61                 <ol>
62                     [% IF Koha.Preference('PatronRestrictionTypes') %]
63                     <li>
64                         <label for="debarred_type">Type:</label>
65                         <select name="debarred_type">
66                             [% FOREACH code IN restriction_types.keys %]
67                                 [% IF restriction_types.$code.can_be_added_manually %]
68                                     <option value="[% code | html %]">[% restriction_types.$code.display_text | html %]</option>
69                                 [% END %]
70                             [% END %]
71                         </select>
72                     </li>
73                     [% END %]
74                     <li><label for="rcomment">Comment:</label> <input type="text" id="rcomment" name="comment" /></li>
75                     <li>
76                         <label for="rexpiration">Expiration:</label>
77                         <input name="expiration" id="rexpiration" size="20" value="" class="flatpickr" data-flatpickr-futuredate="true" type="text" />
78                     </li>
79                 </ol>
80             <fieldset class="action"><input type="submit" value="Add restriction" /> <a href="#" class="cancel" id="cancel_manual_restriction">Cancel</a></fieldset>
81             </fieldset>
82         </form>
83     [% END %]
84 </div>