{% extends "test_app/base.html" %}
{% load uni_form_tags %}
{% block head_title %}
{{ block.super }}
{{ title }}
{% endblock %}
{% block title %}
{{ block.super }}
{{ title }}
{% endblock %}
{% block body%}
{% if form.helper %}
{% with form.helper as helper %}
{% uni_form form helper %}
{% endwith %}
{% else %}
{% uni_form form helper %}
{% endif %}
{% endblock %}