Lines 105-110
Link Here
|
105 |
<input type="text" id="description" name="description" required="required" class="required" size="50" maxlength="250" value="[% attribute_type.description |html %]" /> |
105 |
<input type="text" id="description" name="description" required="required" class="required" size="50" maxlength="250" value="[% attribute_type.description |html %]" /> |
106 |
<span class="required">Required</span> |
106 |
<span class="required">Required</span> |
107 |
</li> |
107 |
</li> |
|
|
108 |
<li> |
109 |
<label for="display_order">Appear in position: </label> |
110 |
[% IF ( attribute_type.display_order ) %] |
111 |
<input id="display_order" size="3" name="display_order" type="text" value="[% attribute_type.display_order | html %]" /> |
112 |
[% ELSE %] |
113 |
<input id="display_order" size="3" name="display_order" type="text" /> |
114 |
[% END %] |
115 |
</li> |
108 |
|
116 |
|
109 |
[% IF attribute_type AND attribute_type.repeatable AND NOT can_be_set_to_nonrepeatable %] |
117 |
[% IF attribute_type AND attribute_type.repeatable AND NOT can_be_set_to_nonrepeatable %] |
110 |
<li aria-disabled="true"> |
118 |
<li aria-disabled="true"> |
Lines 326-331
Link Here
|
326 |
<th>Authorized value category</th> |
334 |
<th>Authorized value category</th> |
327 |
<th>Mandatory</th> |
335 |
<th>Mandatory</th> |
328 |
<th>Searching</th> |
336 |
<th>Searching</th> |
|
|
337 |
<th>Display order</th> |
329 |
<th class="NoSort noExport">Actions</th> |
338 |
<th class="NoSort noExport">Actions</th> |
330 |
</tr> |
339 |
</tr> |
331 |
</thead> |
340 |
</thead> |
Lines 376-381
Link Here
|
376 |
<span>Not searchable</span> |
385 |
<span>Not searchable</span> |
377 |
[% END %] |
386 |
[% END %] |
378 |
</td> |
387 |
</td> |
|
|
388 |
<td>[% item.display_order | html %]</td> |
379 |
<td class="actions"> |
389 |
<td class="actions"> |
380 |
<a class="btn btn-default btn-xs" href="[% script_name | url %]?op=edit_attribute_type&code=[% item.code | uri %]"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a> |
390 |
<a class="btn btn-default btn-xs" href="[% script_name | url %]?op=edit_attribute_type&code=[% item.code | uri %]"><i class="fa-solid fa-pencil" aria-hidden="true"></i> Edit</a> |
381 |
<a class="btn btn-default btn-xs" href="[% script_name | url %]?op=delete_attribute_type&code=[% item.code | uri %]"><i class="fa fa-trash-can"></i> Delete</a> |
391 |
<a class="btn btn-default btn-xs" href="[% script_name | url %]?op=delete_attribute_type&code=[% item.code | uri %]"><i class="fa fa-trash-can"></i> Delete</a> |