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