|
Lines 24-30
Link Here
|
| 24 |
Actions |
24 |
Actions |
| 25 |
</a> |
25 |
</a> |
| 26 |
|
26 |
|
| 27 |
<ul class="dropdown-menu [% pull_right | html %]" role="menu" aria-labelledby="[% aria_menu | html %]"> |
27 |
<ul class="dropdown-menu" role="menu" aria-labelledby="[% aria_menu | html %]"> |
| 28 |
<li> |
28 |
<li> |
| 29 |
<a class="ar-set-pending-request dropdown-item" data-ar-id="[% id_arg | uri %]" href="#"> |
29 |
<a class="ar-set-pending-request dropdown-item" data-ar-id="[% id_arg | uri %]" href="#"> |
| 30 |
<i class="fa fa-bars"></i> |
30 |
<i class="fa fa-bars"></i> |
|
Lines 37-43
Link Here
|
| 37 |
</a> |
37 |
</a> |
| 38 |
|
38 |
|
| 39 |
[% IF id_arg && format=='SCAN' %] |
39 |
[% IF id_arg && format=='SCAN' %] |
| 40 |
<a class="ar-edit-urls" href="#" data-ar-id="[% id_arg | uri %]" href="#"> |
40 |
<a class="ar-edit-urls dropdown-item" href="#" data-ar-id="[% id_arg | uri %]" href="#"> |
| 41 |
<i class="fa-solid fa-pencil" aria-hidden="true"></i> |
41 |
<i class="fa-solid fa-pencil" aria-hidden="true"></i> |
| 42 |
Edit URLs |
42 |
Edit URLs |
| 43 |
</a> |
43 |
</a> |
|
Lines 106-126
Link Here
|
| 106 |
<div class="modal-body"> |
106 |
<div class="modal-body"> |
| 107 |
<p>Are you sure you want to cancel this article request?</p> |
107 |
<p>Are you sure you want to cancel this article request?</p> |
| 108 |
|
108 |
|
| 109 |
<fieldset class="action"> |
109 |
<fieldset class="brief"> |
| 110 |
[% SET ar_cancellation = AuthorisedValues.GetAuthValueDropbox('AR_CANCELLATION') %] |
110 |
[% SET ar_cancellation = AuthorisedValues.GetAuthValueDropbox('AR_CANCELLATION') %] |
| 111 |
[% IF ar_cancellation.count %] |
111 |
<ol> |
| 112 |
<label for="cancellation-reason" class="col-sm-4">Cancellation reason: </label> |
112 |
[% IF ar_cancellation.count %] |
| 113 |
<select class="cancellation-reason col-sm-8" name="cancellation-reason" id="modal-cancellation-reason"> |
113 |
<li> |
| 114 |
<option value="" selected>Other reasons</option> |
114 |
<label for="cancellation-reason">Cancellation reason: </label> |
| 115 |
[% FOREACH reason IN ar_cancellation %] |
115 |
<select class="cancellation-reason" name="cancellation-reason" id="modal-cancellation-reason"> |
| 116 |
<option value="[% reason.authorised_value | html %]">[% reason.lib | html %]</option> |
116 |
<option value="" selected>Other reasons</option> |
| 117 |
[% END %] |
117 |
[% FOREACH reason IN ar_cancellation %] |
| 118 |
</select> |
118 |
<option value="[% reason.authorised_value | html %]">[% reason.lib | html %]</option> |
| 119 |
[% END %] |
119 |
[% END %] |
| 120 |
</fieldset> |
120 |
</select> |
| 121 |
<fieldset class="action"> |
121 |
</li> |
| 122 |
<div class="hint col-sm-offset-4">Enter reason</div> |
122 |
[% END %] |
| 123 |
<input type="text" class="notes col-sm-offset-4 col-sm-8" name="notes" id="modal-notes"/> |
123 |
<li> |
|
|
124 |
<label for="modal-notes">Enter reason:</label> |
| 125 |
<input type="text" class="notes" name="notes" id="modal-notes"/> |
| 126 |
</li> |
| 127 |
</ol> |
| 124 |
</fieldset> |
128 |
</fieldset> |
| 125 |
</div> |
129 |
</div> |
| 126 |
|
130 |
|
|
Lines 153-163
Link Here
|
| 153 |
<div class="row"> |
157 |
<div class="row"> |
| 154 |
|
158 |
|
| 155 |
[% INCLUDE 'messages.inc' %] |
159 |
[% INCLUDE 'messages.inc' %] |
| 156 |
[% IF Koha.Preference('CircSidebar') %] |
160 |
[% IF Koha.Preference('CircSidebar') %] |
| 157 |
<div class="col-md-10 order-md-2 order-sm-1"> |
161 |
<div class="col-md-10 order-md-2 order-sm-1"> |
| 158 |
[% ELSE %] |
162 |
[% ELSE %] |
| 159 |
<div class="col-md-12 col-lg-10 col-lg-offset-1"> |
163 |
<div class="col-md-10 offset-md-1 col-lg-8 offset-lg-2"> |
| 160 |
[% END %] |
164 |
[% END %] |
| 161 |
|
165 |
|
| 162 |
<h1>Article requests</h1> |
166 |
<h1>Article requests</h1> |
| 163 |
[% PROCESS urls_modal %] |
167 |
[% PROCESS urls_modal %] |
|
Lines 291-297
Link Here
|
| 291 |
</td> |
295 |
</td> |
| 292 |
<td class="ar-date"><span title="[% ar.created_on | html %]">[% ar.created_on | $KohaDates %]</span></td> |
296 |
<td class="ar-date"><span title="[% ar.created_on | html %]">[% ar.created_on | $KohaDates %]</span></td> |
| 293 |
<td class="ar-actions"> |
297 |
<td class="ar-actions"> |
| 294 |
[% PROCESS actions menuid = "row" _ ar.id id_arg=ar.id format=ar.format pull_right='pull-right' aria_menu='ar-actions' %] |
298 |
[% PROCESS actions menuid = "row" _ ar.id id_arg=ar.id format=ar.format aria_menu='ar-actions' %] |
| 295 |
</td> |
299 |
</td> |
| 296 |
</tr> |
300 |
</tr> |
| 297 |
[% END %] |
301 |
[% END %] |
|
Lines 398-404
Link Here
|
| 398 |
</td> |
402 |
</td> |
| 399 |
<td class="ar-date" data-order="[% ar.created_on | html %]">[% ar.created_on | $KohaDates %]</td> |
403 |
<td class="ar-date" data-order="[% ar.created_on | html %]">[% ar.created_on | $KohaDates %]</td> |
| 400 |
<td class="ar-actions"> |
404 |
<td class="ar-actions"> |
| 401 |
[% PROCESS actions menuid = "row" _ ar.id id_arg=ar.id format=ar.format pull_right='pull-right' aria_menu='ar-actions' %] |
405 |
[% PROCESS actions menuid = "row" _ ar.id id_arg=ar.id format=ar.format aria_menu='ar-actions' %] |
| 402 |
</td> |
406 |
</td> |
| 403 |
</tr> |
407 |
</tr> |
| 404 |
[% END %] |
408 |
[% END %] |
|
Lines 502-508
Link Here
|
| 502 |
</td> |
506 |
</td> |
| 503 |
<td class="ar-date" data-order="[% ar.created_on | html %]">[% ar.created_on | $KohaDates %]</td> |
507 |
<td class="ar-date" data-order="[% ar.created_on | html %]">[% ar.created_on | $KohaDates %]</td> |
| 504 |
<td class="ar-actions"> |
508 |
<td class="ar-actions"> |
| 505 |
[% PROCESS actions menuid="table_" _ ar.id id_arg=ar.id format=ar.format pull_right='pull-right' aria_menu='ar-actions' %] |
509 |
[% PROCESS actions menuid="table_" _ ar.id id_arg=ar.id format=ar.format aria_menu='ar-actions' %] |
| 506 |
</td> |
510 |
</td> |
| 507 |
</tr> |
511 |
</tr> |
| 508 |
[% END %] |
512 |
[% END %] |