mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
19 lines
576 B
HTML
19 lines
576 B
HTML
{% 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 %}
|