{% block content_with_messages %}
{% if subject.deceased %}
{% translate 'This subject is deceased' %}
{% endif %}
{% if subject.to_be_deleted %}
{% translate 'This subject is marked for deletion' %}
{% endif %}
{% if subject.blocked %}
{% translate 'This subject has been blocked due to inappropriate behaviour' %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% endfor %}
{% endif %}
{% block content %}{% endblock %}
{% endblock %}