{%- extends "_layout_list.html" %} {%- block searchformfields %}
| {{ _("Name") }} {{ macros_site.render_sorter(request.endpoint, query_params, 'name') }} | {#{{ _("Type") }} | #}{{ _("Scope") }} | {{ _("Owner / Group") }} | {{ _("Description") }} | {{ _("Created") }} {{ macros_site.render_sorter(request.endpoint, query_params, 'createtime') }} | {{ get_icon("actions") }} {{ _("Actions") }} |
|---|---|---|---|---|---|---|
| {{ item.name | default(_('<< unknown >>'), True) }} | {#{{ query_type_titles.get(item.query_type, item.query_type) }} | #}{%- if item.scope == '__USER__' %} {{ _("Private") }} {%- elif item.scope == '__GROUP__' %} {{ _("Group") }} {%- elif item.scope == '__GLOBAL__' %} {{ _("Global") }} {%- endif %} | {%- if item.user %} {{ item.user.fullname }} {%- elif item.group %} {{ item.group.name }} {%- else %} — {%- endif %} | {%- if item.description %} {{ item.description | truncate(60) }} {%- else %} — {%- endif %} | {{ babel_format_datetime(item.createtime) }} |
{%- if views %}
{%- else %}
{{ _("No supported views") }}
{%- endif %}
{%- if item.scope == '__USER__' and share_groups %}
{%- endif %}
{{ macros_page.render_menu_context_actions(item) }}
|