{% extends 'tekir_base.html' %} {% block body %}

{{ _('You are here:') }}

{{ record.title }}

{{ _('Edit') }}

{{ _('Subpages') }}

{% if record.children %}
{% for item in record.children %} {% endfor %}
{{ _('Select') }} {{ _('Title') }} {{ _('Type') }}
{{ item['title'] or item._slug }} {{ item.datamodel.name_i18n.get(g.lang_code, item.datamodel.name) }}
{% endif %}

{{ _('Attachments') }}

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

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

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

    {% endblock %}