2024-02-07 17:31:12 +13:00
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
2023-12-21 22:14:43 +13:00
{% from 'bootstrap/form.html' import render_form %}
{% block app_content %}
< div class = "row" >
< div class = "col col-login mx-auto" >
< div class = "card mt-5" >
< div class = "card-body p-6" >
< div class = "card-title" > {{ _('Delete "%(community_title)s"', community_title=community.title) }}< / div >
< div class = "card-body" >
2024-03-26 23:17:10 +01:00
< p class = "card-text" > Are you sure you want to delete this community? This is irreversible and will delete all posts and comments associated with it.< / p >
2023-12-21 22:14:43 +13:00
{{ render_form(form) }}
2024-03-26 23:17:10 +01:00
< a class = "btn btn-primary mt-2" href = "/c/{{ community.link() }}" > Go back< / a >
2023-12-21 22:14:43 +13:00
< / div >
< / div >
< / div >
< / div >
< / div >
{% endblock %}