project/templates/user/username.html
author Parth buch <parth.buch.115@gmail.com>
Sat, 17 Sep 2011 18:20:01 +0530
branch2011
changeset 411 0e6657d73a6a
parent 123 d4799b7159e4
permissions -rw-r--r--
Removing PSF from sponsors page

{% extends "base.html" %}

{% block title %}Change Your Username{% endblock %}

{% block content %}
    <h1>Change your username</h1>

    <form action="{% url scipycon_username params.scope %}"
          method="post">
        <table class="scipycon-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 %}