summaryrefslogtreecommitdiffstats
path: root/templates/settings/profile.html
blob: 806a9308583c4088e29f45ac3e497b3463eaf35c (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
{% 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 %}
        </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 %}