|
Lines 111-116
Link Here
|
| 111 |
<table id="illrequestlist" class="table table-bordered table-striped"> |
111 |
<table id="illrequestlist" class="table table-bordered table-striped"> |
| 112 |
<thead> |
112 |
<thead> |
| 113 |
<tr> |
113 |
<tr> |
|
|
114 |
<th>Request ID</th> |
| 114 |
<th>Author</th> |
115 |
<th>Author</th> |
| 115 |
<th>Title</th> |
116 |
<th>Title</th> |
| 116 |
<th>Requested from</th> |
117 |
<th>Requested from</th> |
|
Lines 125-137
Link Here
|
| 125 |
[% FOREACH request IN requests %] |
126 |
[% FOREACH request IN requests %] |
| 126 |
[% status = request.status | html %] |
127 |
[% status = request.status | html %] |
| 127 |
<tr> |
128 |
<tr> |
| 128 |
<td>[% request.metadata.Author || 'N/A' | html %]</td> |
129 |
<td>[% request.id %]</td> |
| 129 |
<td>[% request.metadata.Title || 'N/A' | html %]</td> |
130 |
<td> |
| 130 |
<td>[% request.backend | html %]</td> |
131 |
[% IF request.metadata.Author %][% request.metadata.Author | html %][% ELSE %]<span>N/A</span>[% END %] |
| 131 |
<td>[% request.medium | html %]</td> |
132 |
</td> |
| 132 |
<td>[% request.capabilities.$status.name | html %]</td> |
133 |
<td> |
| 133 |
<td>[% request.placed | html %]</td> |
134 |
[% IF request.metadata.Title %][% request.metadata.Title | html %][% ELSE %]<span>N/A</span>[% END %] |
| 134 |
<td>[% request.updated | html %]</td> |
135 |
</td> |
|
|
136 |
<td>[% request.backend %]</td> |
| 137 |
<td>[% request.medium %]</td> |
| 138 |
<td>[% request.capabilities.$status.name %]</td> |
| 139 |
<td>[% request.placed %]</td> |
| 140 |
<td>[% request.updated %]</td> |
| 135 |
<td> |
141 |
<td> |
| 136 |
<a href="/cgi-bin/koha/opac-illrequests.pl?method=view&illrequest_id=[% request.id | html %]" class="btn btn-default btn-small pull-right">View</a> |
142 |
<a href="/cgi-bin/koha/opac-illrequests.pl?method=view&illrequest_id=[% request.id | html %]" class="btn btn-default btn-small pull-right">View</a> |
| 137 |
</td> |
143 |
</td> |
|
Lines 148-153
Link Here
|
| 148 |
<legend id="library_legend">Details from library</legend> |
154 |
<legend id="library_legend">Details from library</legend> |
| 149 |
<ol> |
155 |
<ol> |
| 150 |
<li> |
156 |
<li> |
|
|
157 |
<label for="request_id">Request ID:</label> |
| 158 |
[% request.id %] |
| 159 |
</li> |
| 160 |
<li> |
| 151 |
<label for="backend">Requested from:</label> |
161 |
<label for="backend">Requested from:</label> |
| 152 |
[% request.backend | html %] |
162 |
[% request.backend | html %] |
| 153 |
</li> |
163 |
</li> |
| 154 |
- |
|
|