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

{% block subtitle %}Profile{% endblock %}

{% block content %}
    <form action="." method="POST" enctype="multipart/form-data" >
        {% csrf_token %}
        <fieldset>
            <legend>Details</legend>
            {% include "forms/_field.html" with field=form.name %}
            {% include "forms/_field.html" with field=form.summary %}
            {% include "forms/_field.html" with field=form.discoverable %}
            {% include "forms/_field.html" with field=form.visible_follows %}
        </fieldset>
        <fieldset>
            <legend>Images</legend>
            {% include "forms/_field.html" with field=form.icon %}
            {% include "forms/_field.html" with field=form.image %}
        </fieldset>
        <div class="buttons">
            <a href="{{ request.identity.urls.view }}" class="button secondary left">View Profile</a>
            <button>Save</button>
        </div>
    </form>
{% endblock %}