pyfedi/app/templates/post/post_reply_report.html

22 lines
814 B
HTML
Raw Normal View History

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
2023-12-28 20:00:07 +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">{{ _('Report comment on "%(post_title)s" by %(reply_name)s',
2024-01-09 20:44:08 +13:00
post_title=post.title, reply_name=post_reply.author.link()) }}</div>
2023-12-28 20:00:07 +13:00
<div class="card-body">
{{ render_form(form) }}
</div>
</div>
</div>
</div>
</div>
{% endblock %}