project/templates/user/editprofile.html
author Parth buch <parth.buch.115@gmail.com>
Sat, 03 Dec 2011 20:05:08 +0530
branch2011
changeset 494 ac6dbb3685db
parent 123 d4799b7159e4
permissions -rw-r--r--
changed the menu ul li tags

{% extends "base.html" %}

{% block title %}Edit Your Profile{% endblock %}

{% block content %}
    <h1>Edit Your Profile</h1>


    <form action="{% url scipycon_edit_profile params.scope %}"
          enctype="multipart/form-data"
          method="post">
                <fieldset>
                    <legend>Edit Profile</legend>
                    <table class="scipycon-default">
                        {{ form }}
                    </table>
                    <input type="hidden"
                           name="action"
                           value="email" />
        
                    <input class="button left"
                           type="submit"
                           value="Save Changes" />
        
    </fieldset>
    </form>
{% endblock %}