project/templates/user/username.html
changeset 1 fda1c66b25f9
child 96 178b89a3ca4f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/templates/user/username.html	Fri Oct 30 15:09:12 2009 +0530
@@ -0,0 +1,32 @@
+{% extends "base.html" %}
+
+{% block title %}Change Your Username{% endblock %}
+
+{% block content %}
+    <h1>Change your username</h1>
+
+    <form action="{% url kiwipycon_username %}"
+          method="post">
+        <table class="kiwipycon-default">
+            <tr>
+                  <td class="label">
+                      <label for="id_username">New username:</label>
+                  </td>
+                  <td>
+                      {{ form.username.errors }}                        
+                      {{ form.username }}
+                  </td>
+            </tr>
+            <tr>
+                <td></td>
+                <td>
+                    <input class="button left"
+                           type="submit"
+                           value="Save username" />
+                </td>
+            </tr>
+        </table>
+        
+    </form>
+{% endblock %}
+