{% load i18n aristotle_tags %}
{% if item.is_superseded %}
{% trans 'This item has been superseded by the newer version'%} - {% include "aristotle_mdr/helpers/itemLink.html" with item=item.superseded_by %}.
{% elif item.is_retired %}
{% trans 'This item has been retired and is not recommended for use by any registration authority.'%}
{% elif item.is_public %} {# split the if condition as if its public and not technical, we want nothing not one of the lower alerts #} {% elif item.is_locked %}
{% trans 'This item is currently under development.'%}
{% else %}
{% trans 'This item is under active development. Content may change frequently.'%}
{% endif %}