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-130
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 | html %]</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> |
Lines 152-157
Link Here
|
152 |
<legend id="library_legend">Details from library</legend> |
154 |
<legend id="library_legend">Details from library</legend> |
153 |
<ol> |
155 |
<ol> |
154 |
<li> |
156 |
<li> |
|
|
157 |
<label for="request_id">Request ID:</label> |
158 |
[% request.id | html %] |
159 |
</li> |
160 |
<li> |
155 |
<label for="backend">Requested from:</label> |
161 |
<label for="backend">Requested from:</label> |
156 |
[% request.backend | html %] |
162 |
[% request.backend | html %] |
157 |
</li> |
163 |
</li> |
158 |
- |
|
|