This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/settings/settings.html

21 lines
567 B
HTML
Raw Normal View History

2022-11-18 01:43:00 +01:00
{% extends "settings/base.html" %}
2022-11-18 01:43:00 +01:00
{% block subtitle %}{{ section.title }}{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
2022-11-18 01:43:00 +01:00
{% for title, fields in fieldsets.items %}
<fieldset>
<legend>{{ title }}</legend>
{% for field in fields %}
{% include "forms/_field.html" %}
{% endfor %}
</fieldset>
{% endfor %}
<div class="buttons">
<button>Save</button>
</div>
</form>
{% endblock %}