diff options
author | Madhusudan.C.S | 2009-10-30 15:09:12 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-10-30 15:09:12 +0530 |
commit | f89410559c20dd88d78ccd6b9d24e7941da9d5ff (patch) | |
tree | 3ad4fb64efc7523d1f3065e0dd03693871d6ce55 /project/templates/user/username.html | |
parent | 75f0773685ef0724d8ccc1eb1aab16bba55cd7a7 (diff) | |
download | scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.tar.gz scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.tar.bz2 scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.zip |
Added all the files from kiwipycon and the changes made for SciPy.in.
Diffstat (limited to 'project/templates/user/username.html')
-rw-r--r-- | project/templates/user/username.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/project/templates/user/username.html b/project/templates/user/username.html new file mode 100644 index 0000000..0e101a8 --- /dev/null +++ b/project/templates/user/username.html @@ -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 %} + |