project/templates/user/editprofile.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 18 Nov 2010 19:04:24 +0530
branchpayments
changeset 278 2ea8af6851c9
parent 123 d4799b7159e4
permissions -rw-r--r--
Modify the delegate_remainder function to send mails for the registered user and add content for registration update mail.

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