project/templates/user/editprofile.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 20 Jul 2010 19:23:40 +0530
changeset 123 d4799b7159e4
parent 96 178b89a3ca4f
permissions -rw-r--r--
Add scope for all the URLs and adjust the formatting and indentation.

{% 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 %}