19 lines
458 B
HTML
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 %}
|
|
|