You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% extends "django_messages/base.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<h1>{% trans "Compose Message"%}</h1>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="{% trans "Send" %} »"/>
|
|
</form>
|
|
|
|
{% endblock %} |