Template for contact

This commit is contained in:
Michal Čihař 2012-03-05 11:40:37 +01:00
parent c80945cce1
commit 232d65920f

16
html/contact.html Normal file
View File

@ -0,0 +1,16 @@
{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
{% block content %}
<form method="post" action="{% url 'accounts.views.contant' %}">
{% csrf_token %}
<table>
{{ table.as_table }}
<tr><td></td><td><input type="submit" class="button" value="{% trans "Send" %}" /></td></tr>
</table>
</form>
{% endblock %}