xmpp.chapril.org-conversejs/html/contact.html
2012-03-05 12:12:57 +01:00

19 lines
458 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
{% block content %}
<p>{% blocktrans %}Please contact us in English, otherwise we might be unable to understand your request.{% endblocktrans %}</p>
<form method="post" action="{% url 'accounts.views.contact' %}">
{% csrf_token %}
<table>
{{ form.as_table }}
<tr><td></td><td><input type="submit" class="button" value="{% trans "Send" %}" /></td></tr>
</table>
</form>
{% endblock %}