Lines 110-115
Link Here
|
110 |
<table id="illrequestlist" class="table table-bordered table-striped"> |
110 |
<table id="illrequestlist" class="table table-bordered table-striped"> |
111 |
<thead> |
111 |
<thead> |
112 |
<tr> |
112 |
<tr> |
|
|
113 |
<th>Request ID</th> |
113 |
<th>Author</th> |
114 |
<th>Author</th> |
114 |
<th>Title</th> |
115 |
<th>Title</th> |
115 |
<th>Requested from</th> |
116 |
<th>Requested from</th> |
Lines 124-129
Link Here
|
124 |
[% FOREACH request IN requests %] |
125 |
[% FOREACH request IN requests %] |
125 |
[% status = request.status %] |
126 |
[% status = request.status %] |
126 |
<tr> |
127 |
<tr> |
|
|
128 |
<td>[% request.id %]</td> |
127 |
<td>[% request.metadata.Author || 'N/A' %]</td> |
129 |
<td>[% request.metadata.Author || 'N/A' %]</td> |
128 |
<td>[% request.metadata.Title || 'N/A' %]</td> |
130 |
<td>[% request.metadata.Title || 'N/A' %]</td> |
129 |
<td>[% request.backend %]</td> |
131 |
<td>[% request.backend %]</td> |
Lines 147-152
Link Here
|
147 |
<legend id="library_legend">Details from library</legend> |
149 |
<legend id="library_legend">Details from library</legend> |
148 |
<ol> |
150 |
<ol> |
149 |
<li> |
151 |
<li> |
|
|
152 |
<label for="request_id">Request ID:</label> |
153 |
[% request.id %] |
154 |
</li> |
155 |
<li> |
150 |
<label for="backend">Requested from:</label> |
156 |
<label for="backend">Requested from:</label> |
151 |
[% request.backend %] |
157 |
[% request.backend %] |
152 |
</li> |
158 |
</li> |
153 |
- |
|
|