{% load i18n misago_capture %}
{% if state.is_banned %}
{% capture trimmed as state_name %}
{% if state.banned_until %}
{% blocktrans trimmed with ban_date=state.formatted_ban_expiration_date %}
Banned until {{ ban_date }}
{% endblocktrans %}
{% else %}
{% trans "Banned" %}
{% endif %}
{% endcapture %}
{% elif state.is_hidden %}
{% elif state.is_online_hidden %}
{% elif state.is_offline_hidden %}
{% elif state.is_online %}
{% elif state.is_offline %}
{% endif%}