Lines 343-349
a.add, a.delete {
Link Here
|
343 |
|
343 |
|
344 |
[% IF index.index_name == 'biblios' %] |
344 |
[% IF index.index_name == 'biblios' %] |
345 |
<h3>Facet order</h3> |
345 |
<h3>Facet order</h3> |
346 |
<div id="facet_[% index.index_name %]"> |
346 |
<div id="facet_[% index.index_name | html %]"> |
347 |
<table> |
347 |
<table> |
348 |
<thead> |
348 |
<thead> |
349 |
<tr> |
349 |
<tr> |
Lines 356-362
a.add, a.delete {
Link Here
|
356 |
[% FOREACH f IN facetable_fields %] |
356 |
[% FOREACH f IN facetable_fields %] |
357 |
<tr> |
357 |
<tr> |
358 |
<td> |
358 |
<td> |
359 |
[% f.name %] |
359 |
[% f.name | html %] |
360 |
</td> |
360 |
</td> |
361 |
<td> |
361 |
<td> |
362 |
[% SWITCH f.name %] |
362 |
[% SWITCH f.name %] |
Lines 369-382
a.add, a.delete {
Link Here
|
369 |
[% CASE 'ccode' %]Collections |
369 |
[% CASE 'ccode' %]Collections |
370 |
[% CASE 'holdingbranch' %]Holding libraries |
370 |
[% CASE 'holdingbranch' %]Holding libraries |
371 |
[% CASE 'homebranch' %]Home libraries |
371 |
[% CASE 'homebranch' %]Home libraries |
372 |
[% CASE %][% f %] |
372 |
[% CASE %][% f | html %] |
373 |
[% END %] |
373 |
[% END %] |
374 |
</td> |
374 |
</td> |
375 |
<td> |
375 |
<td> |
376 |
[% IF f.facet_order %] |
376 |
[% IF f.facet_order %] |
377 |
<input type="checkbox" name="display_facet" value="[% f.name %]" checked="checked" /> |
377 |
<input type="checkbox" name="display_facet" value="[% f.name | html %]" checked="checked" /> |
378 |
[% ELSE %] |
378 |
[% ELSE %] |
379 |
<input type="checkbox" name="display_facet" value="[% f.name %]" /> |
379 |
<input type="checkbox" name="display_facet" value="[% f.name | html %]" /> |
380 |
[% END %] |
380 |
[% END %] |
381 |
</td> |
381 |
</td> |
382 |
</tr> |
382 |
</tr> |
383 |
- |
|
|