Changed grade template logic once again.
[cascardo/eventmanager.git] / templates / inscricao_caravana.html
1 {% extends "base.html" %}
2 {% block content %}
3
4 <h2>Inscrição de Caravana</h2>
5
6 {% if ok %}
7
8 <div class="confirmation">
9     <p>Cadastro efetuado com sucesso.</p>
10 </div>
11
12 {% else %}
13
14 <form id="cadastro" method="post" action=".">
15     {{ form.as_p }}
16
17     <input type="submit" value="Ok" />
18 </form>
19
20 {% endif %}
21
22 {% endblock %}