{% extends 'base.html' %} {% load static i18n crispy_forms_tags %} {% block title %}{% trans "Form Templates" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Form Templates" %}

{# Search/Filter Area - Matching Standard Structure #}
{# Show Clear button if search is active #} {% if query %} {% trans "Clear Search" %} {% endif %}
{% if templates %}
{# View Switcher #} {% include "includes/_list_view_switcher.html" with list_id="form-templates-list" %} {# Card View (Default) #}
{% for template in templates %}
{{ template.name }}
{{ template.job|default:"N/A" }} {# Stats #}
{{ template.get_stage_count }}
{% trans "Stages" %}
{{ template.get_field_count }}
{% trans "Fields" %}
{# Description #}

{% if template.description %} {{ template.description|truncatewords:20 }} {% else %} {% trans "No description provided" %} {% endif %}

{# Action area #}
{% endfor %}
{# Table View #}
{% for template in templates %} {% endfor %}
{% trans "Template Name" %} {% trans "Job" %} {% trans "Stages" %} {% trans "Fields" %} {% trans "Created" %} {% trans "Last Updated" %} {% trans "Actions" %}
{{ template.name }} {{ template.job|default:"N/A" }} {{ template.get_stage_count }} {{ template.get_field_count }} {{ template.created_at|date:"M d, Y" }} {{ template.updated_at|date:"M d, Y" }}
{# Pagination (Standardized) #} {% if templates.has_other_pages %} {% endif %} {% else %}

{% trans "No Form Templates Found" %}

{% if query %} {% blocktrans with query=query %}No templates match your search "{{ query }}".{% endblocktrans %} {% else %} {% trans "You haven't created any form templates yet." %} {% endif %}

{% endif %}
{% include 'includes/delete_modal.html' %} {% endblock %}