project/templates/talk/edit-talk.html
changeset 1 fda1c66b25f9
child 96 178b89a3ca4f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/templates/talk/edit-talk.html	Fri Oct 30 15:09:12 2009 +0530
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+
+{% block title %}Edit Talk{% endblock %}
+
+{% block content %}
+<h1>Edit Talk</h1>
+
+{% include '_errors.html' %}
+<form action="{% url kiwipycon_edit_talk id %}"
+      method="post">
+    <fieldset>
+        <legend>Edit Talk</legend>
+        <table class="kiwipycon-default">
+            {{ form }}
+        </table>
+        <button class="button left"
+                type="submit">
+            Save Changes
+        </button>
+    </fieldset>
+</form>
+{% endblock content %}
+