mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
18 lines
454 B
HTML
18 lines
454 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ section.title }} - Admin{% endblock %}
|
|
|
|
{% block content %}
|
|
{% block menu %}
|
|
{% include "admin/_menu.html" %}
|
|
{% endblock %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
{% for field in form %}
|
|
{% include "forms/_field.html" %}
|
|
{% endfor %}
|
|
<div class="buttons">
|
|
<button>Save</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|