templates/user/edit_profile.html
author anoop
Wed, 17 Feb 2010 19:28:18 +0530
changeset 43 b5b9a4fc508f
parent 28 e137b605b888
child 60 3eac96608091
permissions -rw-r--r--
added template registration/activate.html required by django-registration.

{% extends 'base.html' %}
{% block content %}
    <form action="/user/edit/" method="post">
        {{ edit_profile_form.as_p }}
    <input type="submit" value="Apply Changes" />
    </form>
{% endblock %}