summaryrefslogtreecommitdiffstats
path: root/templates/settings/profile.html
blob: 1a7c29f2ddf31d9e8d0e13da9dd89828687f05be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}

{% block title %}Profile - Settings{% endblock %}

{% block content %}
    {% block menu %}
        {% include "settings/_menu.html" %}
    {% endblock %}
    <form action="." method="POST" enctype="multipart/form-data" >
        {% csrf_token %}
        {% for field in form %}
            {% include "forms/_field.html" %}
        {% endfor %}
        <div class="buttons">
            <a href="{{ request.identity.urls.view }}" class="button secondary">View Profile</a>
            <button>Save</button>
        </div>
    </form>
{% endblock %}