{% block formtitle %}
House Wars
{% endblock %} {% block content %}{% endblock %}
{% if messages %}
{% for message in messages %}
{% endfor %}
{% endif %}
{% if form.errors %}
{% for field in form %}
{% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endif %}