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