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-136
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> |
|
|
129 |
<td>[% request.id %]</td> |
128 |
<td> |
130 |
<td> |
129 |
[% IF request.metadata.Author %][% request.metadata.Author | html %][% ELSE %]<span>N/A</span>[% END %] |
131 |
[% IF request.metadata.Author %][% request.metadata.Author | html %][% ELSE %]<span>N/A</span>[% END %] |
130 |
</td> |
132 |
</td> |
131 |
<td> |
133 |
<td> |
132 |
[% IF request.metadata.Title %][% request.metadata.Title | html %][% ELSE %]<span>N/A</span>[% END %] |
134 |
[% IF request.metadata.Title %][% request.metadata.Title | html %][% ELSE %]<span>N/A</span>[% END %] |
133 |
</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> |
134 |
<td>[% request.backend | html %]</td> |
141 |
<td>[% request.backend | html %]</td> |
135 |
<td>[% request.medium | html %]</td> |
142 |
<td>[% request.medium | html %]</td> |
136 |
<td>[% request.capabilities.$status.name | html %]</td> |
143 |
<td>[% request.capabilities.$status.name | html %]</td> |
Lines 152-157
Link Here
|
152 |
<legend id="library_legend">Details from library</legend> |
159 |
<legend id="library_legend">Details from library</legend> |
153 |
<ol> |
160 |
<ol> |
154 |
<li> |
161 |
<li> |
|
|
162 |
<label for="request_id">Request ID:</label> |
163 |
[% request.id %] |
164 |
</li> |
165 |
<li> |
155 |
<label for="backend">Requested from:</label> |
166 |
<label for="backend">Requested from:</label> |
156 |
[% request.backend | html %] |
167 |
[% request.backend | html %] |
157 |
</li> |
168 |
</li> |
158 |
- |
|
|