Newer
Older
postorius / src / postorius / templates / postorius / domain / new.html
@Aurélien Bompard Aurélien Bompard on 11 Aug 2016 458 bytes Use the same template block names as hyperkitty and allauth
{% extends postorius_base_template %}
{% load i18n %}
{% load bootstrap_tags %}

{% block head_title %}
{% trans 'Add domain' %} - {{ block.super }}
{% endblock %}

{% block content %}

    <div class="page-header">
        <h2>{% trans 'Add a new domain' %}</h2>
    </div>

    <form action="{% url 'domain_new' %}" method="post" class="form-horizontal">
        {% bootstrap_form_horizontal form 2 8 'Create domain' %}
    </form>

{% endblock content %}