|
Lines 86-91
Link Here
|
| 86 |
</li> |
86 |
</li> |
| 87 |
<li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank | html %]" /> |
87 |
<li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank | html %]" /> |
| 88 |
</li> |
88 |
</li> |
|
|
89 |
[% IF (server.servertype||type) == 'zed' %] |
| 90 |
<li><label for="attributes">Attributes (additional PQF attributes added to each query): </label><input type="text" name="attributes" id="attributes" size="30" value="[% server.attributes %]" /> |
| 91 |
</li> |
| 92 |
[% END %] |
| 89 |
|
93 |
|
| 90 |
<li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label> |
94 |
<li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label> |
| 91 |
<select name="syntax" id="syntax"> |
95 |
<select name="syntax" id="syntax"> |
|
Lines 162-168
Link Here
|
| 162 |
You searched for [% searchfield | html %] |
166 |
You searched for [% searchfield | html %] |
| 163 |
[% END %] |
167 |
[% END %] |
| 164 |
<table id="serverst"> |
168 |
<table id="serverst"> |
| 165 |
<thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Preselected</th><th>Rank</th><th>Syntax</th><th>Encoding</th><th>Timeout</th><th>Record type</th><th></th> |
169 |
|
|
|
170 |
<thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Preselected</th><th>Rank</th><th>Syntax</th><th>Encoding</th><th>Timeout</th><th>Record type</th><th>Attributes</th><th>Options</th> |
| 166 |
</tr></thead> |
171 |
</tr></thead> |
| 167 |
<tbody> |
172 |
<tbody> |
| 168 |
[% FOREACH loo IN loop %] |
173 |
[% FOREACH loo IN loop %] |
|
Lines 175-180
Link Here
|
| 175 |
<span>Authority</span> |
180 |
<span>Authority</span> |
| 176 |
[% END %] |
181 |
[% END %] |
| 177 |
</td> |
182 |
</td> |
|
|
183 |
<td>[% loo.attributes %]</td> |
| 178 |
<td> |
184 |
<td> |
| 179 |
<div class="dropdown"> |
185 |
<div class="dropdown"> |
| 180 |
<a class="btn btn-default btn-xs dropdown-toggle" id="reportactions[% savedreport.id | html %]" role="button" data-toggle="dropdown" href="#"> |
186 |
<a class="btn btn-default btn-xs dropdown-toggle" id="reportactions[% savedreport.id | html %]" role="button" data-toggle="dropdown" href="#"> |
|
Lines 257-263
Link Here
|
| 257 |
$(document).ready(function() { |
263 |
$(document).ready(function() { |
| 258 |
$("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, { |
264 |
$("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 259 |
"aoColumnDefs": [ |
265 |
"aoColumnDefs": [ |
| 260 |
{ "aTargets": [2,3,4,7,8,9,10,11], "bSortable": false, "bSearchable": false }, |
266 |
{ "aTargets": [-1], "bSortable": false, "bSearchable": false }, |
| 261 |
], |
267 |
], |
| 262 |
"sPaginationType": "four_button" |
268 |
"sPaginationType": "four_button" |
| 263 |
})); |
269 |
})); |
| 264 |
- |
|
|