templates/user/edit_profile.html
changeset 60 3eac96608091
parent 28 e137b605b888
equal deleted inserted replaced
59:f6a3bf088a9e 60:3eac96608091
     1 {% extends 'base.html' %}
     1 {% extends 'base.html' %}
     2 {% block content %}
     2 {% block content %}
     3     <form action="/user/edit/" method="post">
     3     <form action="/user/edit/" enctype = "multipart/form-data" method="post">
     4         {{ edit_profile_form.as_p }}
     4         {{ edit_profile_form.as_p }}
     5     <input type="submit" value="Apply Changes" />
     5     <input type="submit" value="Apply Changes" />
     6     </form>
     6     </form>
     7 {% endblock %}
     7 {% endblock %}