pyfedi/app/templates/chat/blocked.html
2024-02-19 16:21:49 +13:00

21 lines
No EOL
709 B
HTML

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
{% set active_child = 'chats' %}
{% 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">{{ _('Sorry') }}</div>
<div class="card-body">
<p>{{ _('You have blocked this person or they have blocked you.') }}</p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}