adicionando template de edição de dados do palestrante
authorLincoln de Sousa <pythonwarrior@pidinti.localdomain>
Wed, 15 Aug 2007 15:17:07 +0000 (12:17 -0300)
committerLincoln de Sousa <pythonwarrior@pidinti.localdomain>
Wed, 15 Aug 2007 15:17:07 +0000 (12:17 -0300)
templates/editar_palestrante.html [new file with mode: 0644]

diff --git a/templates/editar_palestrante.html b/templates/editar_palestrante.html
new file mode 100644 (file)
index 0000000..40c2336
--- /dev/null
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+{% block content %}
+
+{% if ok %}
+
+<div class="confirmation">
+    <p>Seus dados foram editados com sucesso!</p>
+</div>
+
+{% else %}
+
+<form id="cadastro" method="post" action=".">
+    {{ form.as_p }}
+    <input type="submit" value="Ok!" />
+</form>
+
+{% endif %}
+
+{% endblock %}