This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/resources/views/yuuno/meta/banned.twig
2016-11-09 19:32:23 +01:00

29 lines
1.1 KiB
Twig

{% extends 'master.twig' %}
{% set title = 'You are banned!' %}
{% block content %}
<div class="content banned">
<div style="padding: 20px;">
<h1>You got dunked on!</h1>
{% if ban.reason %}
<h3>The following reason was supplied:</h3>
<p class="banned__reason">
{{ ban.reason|raw }}
</p>
{% else %}
<h3>No reason was supplied.</h3>
{% endif %}
<br>
<h2>Additional information</h2>
<ul style="margin-left: 30px;">
<li>You were banned on {{ ban.issued|date(config('general.date_format')) }}.</li>
<li>{% if ban.expires %}This ban expires on {{ ban.expires|date(config('general.date_format')) }}.{% else %}<b>You are permanently banned.</b>{% endif %}</li>
{% if ban.expires %}
<li>You were banned by <a href="{{ route('user.profile', ban.issuer.id) }}">{{ ban.issuer.username }}</a>.</li>
{% endif %}
</ul>
</div>
</div>
{% endblock %}