Lines 272-283
Link Here
|
272 |
<option value="0" selected="selected">Save as new template</option> |
272 |
<option value="0" selected="selected">Save as new template</option> |
273 |
<optgroup label="Update existing template"> |
273 |
<optgroup label="Update existing template"> |
274 |
[% FOREACH t IN item_templates.owned %] |
274 |
[% FOREACH t IN item_templates.owned %] |
275 |
<option data-editor="1" value="[% t.id | html %]">[% t.name | html %][% IF t.is_shared %] (shared)[% END %]</option> |
275 |
<option data-editor="1" data-shared="[% t.is_shared %]" value="[% t.id | html %]">[% t.name | html %][% IF t.is_shared %] (shared)[% END %]</option> |
276 |
[% END %] |
276 |
[% END %] |
277 |
[% IF CAN_user_editcatalogue_manage_item_editor_templates && item_templates.shared.count %] |
277 |
[% IF CAN_user_editcatalogue_manage_item_editor_templates && item_templates.shared.count %] |
278 |
<optgroup label="Update shared template"> |
278 |
<optgroup label="Update shared template"> |
279 |
[% FOREACH t IN item_templates.shared %] |
279 |
[% FOREACH t IN item_templates.shared %] |
280 |
<option data-editor="1" value="[% t.id | html %]">[% t.name | html %][% IF t.is_shared %] (shared)[% END %]</option> |
280 |
<option data-editor="1" data-shared="1" value="[% t.id | html %]">[% t.name | html %][% IF t.is_shared %] (shared)[% END %]</option> |
281 |
[% END %] |
281 |
[% END %] |
282 |
</optgroup> |
282 |
</optgroup> |
283 |
[% END %] |
283 |
[% END %] |