This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
corbo/corbo/templates/corbo/email_test_announce_form.html

24 lines
551 B
HTML

{% extends "corbo/manage.html" %}
{% load i18n static %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url "view_announce" pk=object.pk %}">{{ object.title }}</a>
{% endblock %}
{% block appbar %}
<h2>{% trans "Send test email" %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<div class="buttons">
<button class="submit-button">{% trans "Send" %}</button>
<a href="{% url "view_announce" pk=object.pk %}" class="cancel">{% trans "Cancel" %}</a>
</div>
</form>
{% endblock %}