equal
deleted
inserted
replaced
|
1 {% extends "base.html" %} |
|
2 |
|
3 {% block title %}Edit Your Profile{% endblock %} |
|
4 |
|
5 {% block content %} |
|
6 <h1>Edit Your Profile</h1> |
|
7 |
|
8 |
|
9 <form action="{% url kiwipycon_edit_profile %}" |
|
10 enctype="multipart/form-data" |
|
11 method="post"> |
|
12 <fieldset> |
|
13 <legend>Edit Profile</legend> |
|
14 <table class="kiwipycon-default"> |
|
15 {{ form }} |
|
16 </table> |
|
17 <input type="hidden" |
|
18 name="action" |
|
19 value="email" /> |
|
20 |
|
21 <input class="button left" |
|
22 type="submit" |
|
23 value="Save Changes" /> |
|
24 |
|
25 </fieldset> |
|
26 </form> |
|
27 {% endblock %} |
|
28 |