{% if page.id %}
{% include 'wagtailadmin/pages/side_panels/includes/page_workflow_status.html' %}
{% endif %}
{% if locale %}
{% include 'wagtailadmin/pages/side_panels/includes/page_locale_status.html' %}
{% endif %}
{% if page.id %}
{% include 'wagtailadmin/pages/side_panels/includes/page_locked_status.html' %}
{% endif %}
{% include 'wagtailadmin/pages/side_panels/includes/page_privacy_status.html' %}
{# Page type / First Published information #}
{% with page_model=page.content_type.model_class %}
{{ page_model.get_verbose_name }}
{% with description=page_model.get_page_description %}
{% if description %}
({{ description }})
{% endif %}
{% endwith %}
{% endwith %}
{% if page.first_published_at %}
{% trans 'First published ' %}{% timesince_last_update page.first_published_at use_shorthand=True %}