{% load profile %}
{% load i18n %}
{% with status=member|state %}
{% if status == 'STAFF' %}
{% trans "Staff" %}
{% elif status == 'DOWN'%}
{% trans "Dead" %}
{% elif status == 'BAN'%}
{% trans "Banni" %}
{% elif status == 'LS'%}
{% trans "LS" %}
{% endif %}
{% endwith %}