{% extends 'gentelella/base_site.html' %} {% load i18n static %} {% block content %}

{% trans "Email Templates" %}

{% url "async_notification:api-emailtemplate-list" as create_url %} {% url "async_notification:api-emailtemplate-detail" 0 as update_url %} {# Create Modal - custom layout with form + preview side by side #} {# Update Modal - same layout #} {% trans 'Delete Template' as delete_title %} {% include 'gentelella/blocks/modal_template_delete.html' with id="delete_modal" title=delete_title form_id="delete_form" url=update_url %} {# Preview Modal - for viewing existing templates from the table #} {% endblock %} {% block js %} {{ block.super }} {{ create_form.media }} {% endblock %}