Changed grade template logic once again.
[cascardo/eventmanager.git] / templates / inscrever_palestra.html
1 {% extends "base.html" %}
2 {% block content %}
3
4 <h2>Submeter trabalho</h2>
5
6 {% if ok %}
7
8 <div class="confirmation">
9     <p>Seu trabalho foi cadastrado com sucesso!</p>
10 </div>
11
12 {% else %}
13
14 <form id="cadastro" method="post" action=".">
15     {{ form.as_p }}
16     <input type="submit" value="Enviar" />
17 </form>
18
19 {% endif %}
20
21 {% endblock %}