hobo/hobo/emails/templates/hobo/emails_home.html

25 lines
439 B
HTML

{% extends "hobo/base.html" %}
{% load i18n %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'emails-home' %}">{% trans 'Emails' %}</a>
{% endblock %}
{% block appbar %}
<h2>{% trans 'Emails' %}</h2>
{% endblock %}
{% block content %}
<form action="." method="post">
{% csrf_token %}
{{ form.as_p }}
<div class="buttons">
<button>{% trans "Submit" %}</button>
</div>
</form>
{% endblock %}