{% extends "plugins/admin/views/partials/base.html" %} {% block content %} {% if entries_list|length > 0 %}
| {{ tr('admin_entry') }} | |
|---|---|
| {% set _entries = entries.fetchAll(entry.slug, {'order_by': {field: 'slug', direction: 'asc'}}) %} {% if entry.fieldset %} {% set fieldset_path = PATH_FIELDSETS ~ '/' ~ entry.fieldset ~ '.json' %} {% if filesystem_has(fieldset_path) %} {% set fieldset = json_parser_decode(filesystem_read(fieldset_path)) %} {% if fieldset.default_field %} {% if entry[fieldset.default_field] != '' %} {{ entry[fieldset.default_field] }} {% else %} {{ entry.slug }} {% endif %} {% else %} {{ entry.slug }} {% endif %} {% else %} {{ entry.slug }} {% endif %} {% else %} {{ entry.slug }} {% endif %} {% if _entries|length > 0 %} ({{ _entries|length }}) {% endif %} | {{ tr('admin_delete') }} |