{% extends 'online_content/online_content_base.html' %} {% load i18n imagekit static online_content_tags %} {% block content %}
version {{ localized_template_content.draft_version }}
{% if localized_template_content.published_version == localized_template_content.draft_version %}
{% trans 'published' %}
{% else %}
{% if localized_template_content.published_version %}
{% trans 'unpublished changes' %}
{% else %}
{% trans 'not published' %}
{% endif %}
{% endif %}
{% if app.secondary_languages %}
{% if localized_template_content.published_version == localized_template_content.draft_version %}
{% else %}
{% if localized_template_content.translation_ready %}
{% trans 'ready for translation' %}
{% else %}
{% trans 'not ready for translation' %}
{% endif %}
{% endif %}
{% endif %}