{%- set form_id = ui.util.id() -%} {%- set modal_id = ui.util.id() -%} {%- set title = _("Deleted records") -%} {%- set icon = "times" -%} {% if ent_type == 'package' %} {%- set title = _('Deleted datasets') -%} {%- set icon = "sitemap" -%} {% elif ent_type == 'organization' %} {%- set title = _('Deleted organizations') -%} {%- set icon = "building" -%} {% elif ent_type == 'group' %} {%- set title = _('Deleted groups') -%} {%- set icon = "users" -%} {% endif %}
{%- call ui.util.call(ui.accordion_wrapper) -%} {%- call ui.util.call(ui.accordion, title=ui.icon(icon) ~ title, open=true) -%} {# entities list can be of different types #} {% set items = [] %} {% if items|length > 0 %} {%- call ui.util.call(ui.form, method="POST", action=h.url_for('admin.trash'), attrs={"id": form_id}) -%} {%- endcall %} {{ ui.confirm_modal(_(messages.confirm[ent_type]), id=modal_id, form_id=form_id) }} {%- call ui.util.call(ui.form_actions) -%} {{ ui.modal_handle(_('Purge'), id=modal_id, style="danger") }} {%- endcall %} {% endif %} {%- endcall %} {%- endcall %}