Lines 78-86
Link Here
|
78 |
</p> |
78 |
</p> |
79 |
[% USE link_url = url('/cgi-bin/koha/opac-illrequests.pl', whole.value.other) %] |
79 |
[% USE link_url = url('/cgi-bin/koha/opac-illrequests.pl', whole.value.other) %] |
80 |
<a href="[% link_url _ '&stage=copyrightclearance' | $raw %]" |
80 |
<a href="[% link_url _ '&stage=copyrightclearance' | $raw %]" |
81 |
class="btn btn-sm btn-default"><i class="fa fa-check" aria-hidden="true"></i> Yes</a> |
81 |
class="btn btn-sm btn-primary"><i class="fa fa-check" aria-hidden="true"></i> Yes</a> |
82 |
<a href="/cgi-bin/koha/opac-illrequests.pl" |
82 |
<a href="/cgi-bin/koha/opac-illrequests.pl" |
83 |
class="btn btn-sm btn-default"><i class="fa fa-times" aria-hidden="true"></i> No</a> |
83 |
class="btn btn-sm btn-danger"><i class="fa fa-times" aria-hidden="true"></i> No</a> |
84 |
</div> |
84 |
</div> |
85 |
[% ELSE %] |
85 |
[% ELSE %] |
86 |
[% INCLUDE messages %] |
86 |
[% INCLUDE messages %] |
Lines 109-124
Link Here
|
109 |
|
109 |
|
110 |
<div id="illrequests-create-button" class="dropdown btn-group"> |
110 |
<div id="illrequests-create-button" class="dropdown btn-group"> |
111 |
[% IF backends.size > 1 %] |
111 |
[% IF backends.size > 1 %] |
112 |
<button class="btn btn-default dropdown-toggle" type="button" id="ill-backend-dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> |
112 |
<button class="btn btn-primary dropdown-toggle" type="button" id="ill-backend-dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> |
113 |
<i class="fa fa-plus" aria-hidden="true"></i> Create a new request <span class="caret"></span> |
113 |
<i class="fa fa-plus" aria-hidden="true"></i> Create a new request <span class="caret"></span> |
114 |
</button> |
114 |
</button> |
115 |
<ul id="backend-dropdown-options" class="dropdown-menu nojs" aria-labelledby="ill-backend-dropdown"> |
115 |
<div id="backend-dropdown-options" class="dropdown-menu nojs" aria-labelledby="ill-backend-dropdown"> |
116 |
[% FOREACH backend IN backends %] |
116 |
[% FOREACH backend IN backends %] |
117 |
<li><a href="/cgi-bin/koha/opac-illrequests.pl?method=create&backend=[% backend | uri %]">[% backend | html %]</a></li> |
117 |
<a class="dropdown-item" href="/cgi-bin/koha/opac-illrequests.pl?method=create&backend=[% backend | uri %]">[% backend | html %]</a> |
118 |
[% END %] |
118 |
[% END %] |
119 |
</ul> |
119 |
</div> |
120 |
[% ELSE %] |
120 |
[% ELSE %] |
121 |
<a id="ill-new" class="btn btn-default" href="/cgi-bin/koha/opac-illrequests.pl?method=create&backend=[% backends.0 | html %]"> |
121 |
<a id="ill-new" class="btn btn-primary" href="/cgi-bin/koha/opac-illrequests.pl?method=create&backend=[% backends.0 | html %]"> |
122 |
<i class="fa fa-plus" aria-hidden="true"></i> Create a new request |
122 |
<i class="fa fa-plus" aria-hidden="true"></i> Create a new request |
123 |
</a> |
123 |
</a> |
124 |
[% END %] |
124 |
[% END %] |
Lines 233-239
Link Here
|
233 |
[% IF request.status == "NEW" %] |
233 |
[% IF request.status == "NEW" %] |
234 |
<a class="cancel-illrequest btn btn-danger" href="/cgi-bin/koha/opac-illrequests.pl?method=cancreq&illrequest_id=[% request.illrequest_id | html %]">Request cancellation</a> |
234 |
<a class="cancel-illrequest btn btn-danger" href="/cgi-bin/koha/opac-illrequests.pl?method=cancreq&illrequest_id=[% request.illrequest_id | html %]">Request cancellation</a> |
235 |
[% END %] |
235 |
[% END %] |
236 |
<input type="submit" class="update-illrequest btn btn-default" value="Submit modifications" /> |
236 |
<input type="submit" class="update-illrequest btn btn-primary" value="Submit modifications" /> |
237 |
[% END %] |
237 |
[% END %] |
238 |
<span class="cancel"><a href="/cgi-bin/koha/opac-illrequests.pl">Cancel</a></span> |
238 |
<span class="cancel"><a href="/cgi-bin/koha/opac-illrequests.pl">Cancel</a></span> |
239 |
</fieldset> |
239 |
</fieldset> |
240 |
- |
|
|