fix action in profile.html template
[astakos] / astakos / im / templates / profile.html
1 {% extends "account_base.html" %}
2
3 {% load formatters %}
4
5 {% block body %}
6
7 <form action={%url astakos.im.views.edit_profile %} method="post">{% csrf_token %}
8     {{ form.as_p }}
9
10   <div class="actions">
11     <input type="hidden" name="next" value="{{ next }}">
12     <input type="hidden" name="auth" value="{{ user.auth_token }}">
13     <button type="submit" class="btn primary">Update</button>
14   </div>
15
16 </form>
17 {% endblock body %}