2024-08-05 14:22:44 +05:30
|
|
|
{% extends 'index.html' %}
|
2025-05-09 11:43:30 +05:30
|
|
|
{% load static i18n %}
|
2024-08-05 14:22:44 +05:30
|
|
|
{% block content %}
|
2025-05-09 11:43:30 +05:30
|
|
|
<section class="oh-wrapper oh-main__topbar">
|
2025-08-26 10:17:41 +05:30
|
|
|
<div class="oh-main__titlebar oh-main__titlebar--left oh-d-flex-column--resp oh-mb-3--small">
|
2025-05-09 11:43:30 +05:30
|
|
|
<h1 class="oh-main__titlebar-title fw-bold">
|
|
|
|
|
{% trans "Mail Templates" %}
|
|
|
|
|
</h1>
|
2024-08-05 14:22:44 +05:30
|
|
|
</div>
|
|
|
|
|
{% if perms.base.add_horillamailtemplate %}
|
2025-08-26 10:17:41 +05:30
|
|
|
<div class="oh-main__titlebar oh-main__titlebar--right oh-d-flex-column--resp oh-mb-3--small">
|
|
|
|
|
<a hx-get="{% url 'create-mail-template' %}" data-toggle="oh-modal-toggle" data-target="#objectCreateModal"
|
|
|
|
|
hx-target="#objectCreateModalTarget" class="oh-btn oh-btn--secondary ml-2"
|
|
|
|
|
>
|
|
|
|
|
<ion-icon name="add" class="mr-1 md hydrated" role="img" aria-label="add"></ion-icon>
|
|
|
|
|
{% trans "Create" %}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2024-08-05 14:22:44 +05:30
|
|
|
{% endif %}
|
2025-05-09 11:43:30 +05:30
|
|
|
</section>
|
2024-08-05 14:22:44 +05:30
|
|
|
|
2025-08-26 10:17:41 +05:30
|
|
|
<div class="oh-wrapper">
|
|
|
|
|
<div class="oh-empty">
|
|
|
|
|
<img src="{% static 'images/ui/search.svg' %}" class="oh-404__image" alt="Page not found. 404." />
|
|
|
|
|
<h1 class="oh-empty__title">{% trans "No Records found." %}</h1>
|
|
|
|
|
<p class="oh-empty__subtitle">{% trans "There are currently no email templates available." %}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-08-05 14:22:44 +05:30
|
|
|
{% endblock content %}
|