pyfedi/app/templates/community/community_wiki_edit.html
2024-07-17 22:11:31 +08:00

18 lines
526 B
HTML

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
{% from 'bootstrap/form.html' import render_form, render_field %}
{% block app_content %}
<div class="row">
<div class="col-12 col-md-8 position-relative main_pane">
{% block title %}<h1>{{ title }}</h1>{% endblock %}
{{ render_form(form) }}
</div>
{% include "_side_pane.html" %}
</div>
{% endblock %}