{% extends 'admin/base.html' %} {% block title %}{{ t('forms.title') }}{% endblock %} {% block content %}
{{ t('forms.subtitle') }}
| {{ t('table.title') }} | {{ t('forms.form_type') }} | {{ t('table.status') }} | {{ t('table.language') }} | {{ t('forms.submissions_count') }} | {{ t('forms.fields') }} | {{ t('table.updated_date') }} | {{ t('table.actions') }} |
|---|---|---|---|---|---|---|---|
|
{{ form.title }}
/{{ form.slug }}
|
{{ form.form_type }} | {{ t('forms.status_active') if form.is_active else t('forms.status_inactive') }} | {{ form.language|upper }} | {{ form.get_submission_count() }} {% set new_count = form.get_new_submission_count() %} {% if new_count > 0 %} {{ new_count }} {{ t('forms.new_badge') }} {% endif %} | {{ form.get_fields()|length }} | {{ form.updated_at|format_datetime }} |
{{ t('forms.no_forms_text') }}
{{ t('forms.create_first') }} {% endif %}