{% extends 'tekir_base.html' %} {% from 'tekir_fields.html' import render_breadcrumbs %} {% block body %} {{ render_breadcrumbs(record, ancestors) }}

{{ record.title }}

{{ _('Edit') }} {{ _('View') }}

{{ _('Subpages') }}

{% if record.children %}
{% for item in record.children %} {% endfor %}
{{ _('Select') }} {{ _('Name') }} {{ _('Type') }}
{{ item._slug }} {{ item.datamodel.name_i18n.get(g.lang_code, item.datamodel.name) }}
{% else %}

{{ _('No subpages.') }}

{% endif %}

{{ _('Attachments') }}

{% if record.attachments %}
{% for item in record.attachments %} {% endfor %}
{{ _('Select') }} {{ _('File name') }}
{{ record.url_to(item) }}
{% else %}

{{ _('No attachments.') }}

{% endif %}

{{ _('This operation will delete the following content items:') }}

    {{ _('Do you want to continue?') }}

    {% if (child_models | length) == 1 %} {{ child_models[0].name_i18n.get(g.lang_code, child_models[0].name) }} {% else %} {% endif %}
    {{ _('Use button to select file or drag and drop your file into this area.') }}
    {% endblock %}