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