b92c0ec5a676d6e6a8b23cefcfc5aa0c5d26321d
[cascardo/eventmanager.git] / templates / editar_palestrante.html
1 {% extends "base.html" %}
2 {% block content %}
3
4 <h2>Editar Palestrante</h2>
5
6 {% if ok %}
7
8 <div class="confirmation">
9     <p>Seus dados foram editados 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="Salvar" />
17 </form>
18
19 {% endif %}
20
21 {% endblock %}