Lines 19-28
Link Here
|
19 |
|
19 |
|
20 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> › Holds history for [% INCLUDE 'patron-title.inc' %]</div> |
20 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> › Holds history for [% INCLUDE 'patron-title.inc' %]</div> |
21 |
|
21 |
|
22 |
<div id="doc3" class="yui-t2"> |
22 |
<div class="main container-fluid"> |
23 |
<div id="bd"> |
23 |
<div class="row"> |
24 |
<div id="yui-main"> |
24 |
<div class="col-sm-10 col-sm-push-2"> |
25 |
<div class="yui-b"> |
25 |
<main> |
|
|
26 |
|
26 |
[% INCLUDE 'members-toolbar.inc' %] |
27 |
[% INCLUDE 'members-toolbar.inc' %] |
27 |
<h1>Holds history</h1> |
28 |
<h1>Holds history</h1> |
28 |
|
29 |
|
Lines 39-44
Link Here
|
39 |
<div id="holdshistory" style="overflow:hidden"> |
40 |
<div id="holdshistory" style="overflow:hidden"> |
40 |
<table id="table_holdshistory"> |
41 |
<table id="table_holdshistory"> |
41 |
<thead> |
42 |
<thead> |
|
|
43 |
<tr> |
42 |
<th class="anti-the">Title</th> |
44 |
<th class="anti-the">Title</th> |
43 |
<th>Author</th> |
45 |
<th>Author</th> |
44 |
<th>Barcode</th> |
46 |
<th>Barcode</th> |
Lines 51-59
Link Here
|
51 |
<th>Requested item type</th> |
53 |
<th>Requested item type</th> |
52 |
[% END %] |
54 |
[% END %] |
53 |
<th>Status</th> |
55 |
<th>Status</th> |
|
|
56 |
</tr> |
54 |
</thead> |
57 |
</thead> |
55 |
<tbody> |
58 |
<tbody> |
56 |
[% FOREACH hold IN holds %] |
59 |
[% FOREACH hold IN holds %] |
|
|
60 |
<tr> |
57 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% hold.biblio.biblionumber | uri %]">[% hold.biblio.title | html %]</a></td> |
61 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% hold.biblio.biblionumber | uri %]">[% hold.biblio.title | html %]</a></td> |
58 |
<td>[% hold.biblio.author | html %]</td> |
62 |
<td>[% hold.biblio.author | html %]</td> |
59 |
<td>[% hold.item.barcode | html %]</td> |
63 |
<td>[% hold.item.barcode | html %]</td> |
Lines 109-128
Link Here
|
109 |
</div> |
113 |
</div> |
110 |
|
114 |
|
111 |
[% END %] |
115 |
[% END %] |
112 |
</div> |
|
|
113 |
</div> |
114 |
|
116 |
|
115 |
<div class="yui-b"> |
117 |
</main> |
116 |
[% INCLUDE 'circ-menu.inc' %] |
118 |
</div> <!-- /.col-sm-10.col-sm-push-2 --> |
117 |
</div> |
119 |
|
118 |
</div> |
120 |
<div class="col-sm-2 col-sm-pull-10"> |
|
|
121 |
<aside> |
122 |
[% INCLUDE 'circ-menu.inc' %] |
123 |
</aside> |
124 |
</div> <!-- /.col-sm-2.col-sm-pull-10 --> |
125 |
</div> <!-- /.row --> |
119 |
|
126 |
|
120 |
[% MACRO jsinclude BLOCK %] |
127 |
[% MACRO jsinclude BLOCK %] |
121 |
[% INCLUDE 'datatables.inc' %] |
128 |
[% INCLUDE 'datatables.inc' %] |
122 |
[% INCLUDE 'columns_settings.inc' %] |
129 |
[% INCLUDE 'columns_settings.inc' %] |
123 |
[% INCLUDE 'str/members-menu.inc' %] |
130 |
[% INCLUDE 'str/members-menu.inc' %] |
124 |
[% Asset.js("js/members-menu.js") | $raw %] |
131 |
[% Asset.js("js/members-menu.js") | $raw %] |
125 |
<script type="text/javascript" id="js"> |
132 |
<script> |
126 |
$(document).ready(function() { |
133 |
$(document).ready(function() { |
127 |
var columns_settings = [% ColumnsSettings.GetColumns('members', 'holdshistory', 'holdshistory-table', 'json') %]; |
134 |
var columns_settings = [% ColumnsSettings.GetColumns('members', 'holdshistory', 'holdshistory-table', 'json') %]; |
128 |
[% UNLESS show_itemtype_column %] |
135 |
[% UNLESS show_itemtype_column %] |