Lines 16-29
Link Here
|
16 |
<li><a href="#">Your summary</a></li> |
16 |
<li><a href="#">Your summary</a></li> |
17 |
</ul> |
17 |
</ul> |
18 |
|
18 |
|
19 |
<div class="container-fluid"> |
19 |
<div class="container"> |
20 |
<div class="row-fluid"> |
20 |
<div class="row"> |
21 |
<div class="span2"> |
21 |
<div class="col-lg-2"> |
22 |
<div id="navigation"> |
22 |
<div id="navigation"> |
23 |
[% INCLUDE 'navigation.inc' IsPatronPage=1 %] |
23 |
[% INCLUDE 'navigation.inc' IsPatronPage=1 %] |
24 |
</div> |
24 |
</div> |
25 |
</div> |
25 |
</div> |
26 |
<div class="span10"> |
26 |
<div class="col-lg-10"> |
27 |
<div id="userdetails" class="maincontent"> |
27 |
<div id="userdetails" class="maincontent"> |
28 |
[% IF ( bor_messages ) %] |
28 |
[% IF ( bor_messages ) %] |
29 |
<div class="alert alert-info"> |
29 |
<div class="alert alert-info"> |
Lines 235-241
Link Here
|
235 |
</tbody> |
235 |
</tbody> |
236 |
</table> |
236 |
</table> |
237 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed ) %] |
237 |
[% IF ( canrenew && !userdebarred && OpacRenewalAllowed ) %] |
238 |
<input type="submit" class="btn" value="Renew selected" /> |
238 |
<input type="submit" class="btn btn-default" value="Renew selected" /> |
239 |
[% END %] |
239 |
[% END %] |
240 |
</form> |
240 |
</form> |
241 |
|
241 |
|
Lines 246-252
Link Here
|
246 |
[% FOREACH ISSUE IN ISSUES %] |
246 |
[% FOREACH ISSUE IN ISSUES %] |
247 |
<input type="hidden" name="item" value="[% ISSUE.itemnumber %]" /> |
247 |
<input type="hidden" name="item" value="[% ISSUE.itemnumber %]" /> |
248 |
[% END %] |
248 |
[% END %] |
249 |
<input type="submit" class="btn" value="Renew all" /> |
249 |
<input type="submit" class="btn btn-default" value="Renew all" /> |
250 |
</form> |
250 |
</form> |
251 |
[% END %] |
251 |
[% END %] |
252 |
[% ELSE %] |
252 |
[% ELSE %] |
Lines 560-566
Link Here
|
560 |
<form action="/cgi-bin/koha/opac-modrequest.pl" method="post"> |
560 |
<form action="/cgi-bin/koha/opac-modrequest.pl" method="post"> |
561 |
<input type="hidden" name="biblionumber" value="[% RESERVE.biblionumber %]" /> |
561 |
<input type="hidden" name="biblionumber" value="[% RESERVE.biblionumber %]" /> |
562 |
<input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" /> |
562 |
<input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" /> |
563 |
<button type="submit" name="submit" class="btn btn-mini btn-danger" onclick="return confirmDelete(MSG_CONFIRM_DELETE_HOLD);"><i class="icon-remove icon-white"></i> Cancel</button></form> |
563 |
<button type="submit" name="submit" class="btn btn-small btn-danger" onclick="return confirmDelete(MSG_CONFIRM_DELETE_HOLD);"><i class="glyphicon glyphicon-remove icon-white"></i> Cancel</button></form> |
564 |
[% END %] |
564 |
[% END %] |
565 |
</td> |
565 |
</td> |
566 |
[% IF SuspendHoldsOpac %] |
566 |
[% IF SuspendHoldsOpac %] |
Lines 570-578
Link Here
|
570 |
<input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" /> |
570 |
<input type="hidden" name="reserve_id" value="[% RESERVE.reserve_id %]" /> |
571 |
|
571 |
|
572 |
[% IF RESERVE.suspend %] |
572 |
[% IF RESERVE.suspend %] |
573 |
<button class="btn btn-mini" type="submit" name="submit"><i class="icon-play"></i> Resume suspended hold</button> |
573 |
<button class="btn btn-small" type="submit" name="submit"><i class="glyphicon glyphicon-play"></i> Resume suspended hold</button> |
574 |
[% ELSE %] |
574 |
[% ELSE %] |
575 |
<button class="btn btn-mini" type="submit" name="submit"><i class="icon-pause"></i> Suspend hold</button> |
575 |
<button class="btn btn-small" type="submit" name="submit"><i class="glyphicon glyphicon-pause"></i> Suspend hold</button> |
576 |
|
576 |
|
577 |
[% IF AutoResumeSuspendedHolds %] |
577 |
[% IF AutoResumeSuspendedHolds %] |
578 |
<label for="suspend_until_[% RESERVE.reserve_id %]"> until </label> |
578 |
<label for="suspend_until_[% RESERVE.reserve_id %]"> until </label> |
Lines 592-598
Link Here
|
592 |
[% IF SuspendHoldsOpac %] |
592 |
[% IF SuspendHoldsOpac %] |
593 |
<div> |
593 |
<div> |
594 |
<form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post"> |
594 |
<form class="form-inline" action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post"> |
595 |
<button type="submit" name="submit" class="btn" onclick="return confirmDelete(MSG_CONFIRM_SUSPEND_HOLDS);"><i class="icon-pause"></i> Suspend all holds</button> |
595 |
<button type="submit" name="submit" class="btn btn-default" onclick="return confirmDelete(MSG_CONFIRM_SUSPEND_HOLDS);"><i class="glyphicon glyphicon-pause"></i> Suspend all holds</button> |
596 |
<input type="hidden" name="suspend" value="1" /> |
596 |
<input type="hidden" name="suspend" value="1" /> |
597 |
|
597 |
|
598 |
[% IF AutoResumeSuspendedHolds %] |
598 |
[% IF AutoResumeSuspendedHolds %] |
Lines 605-611
Link Here
|
605 |
<br/> |
605 |
<br/> |
606 |
<div> |
606 |
<div> |
607 |
<form action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post"> |
607 |
<form action="/cgi-bin/koha/opac-modrequest-suspend.pl" method="post"> |
608 |
<button type="submit" name="submit" class="btn" onclick="return confirmDelete(MSG_CONFIRM_RESUME_HOLDS);"><i class="icon-play"></i> Resume all suspended holds</button> |
608 |
<button type="submit" name="submit" class="btn btn-default" onclick="return confirmDelete(MSG_CONFIRM_RESUME_HOLDS);"><i class="glyphicon glyphicon-play"></i> Resume all suspended holds</button> |
609 |
<input type="hidden" name="suspend" value="0" /> |
609 |
<input type="hidden" name="suspend" value="0" /> |
610 |
</form> |
610 |
</form> |
611 |
</div> |
611 |
</div> |
612 |
- |
|
|