{% extends 'django_spire/knowledge/page/full_page.html' %} {% load static %} {% load spire_core_tags %} {% block base_head_additional_css %} {% endblock %} {% block base_body_additional_top_js %} {{ block.super }} {% endblock %} {% block full_page_sub_navigation %} {% include 'django_spire/knowledge/sub_navigation/widget/collection_entry_sub_navigation_widget.html' with current_collection_id=entry.collection.id current_version_id=current_version.id %} {% endblock %} {% block full_page_info_navigation %}
{% include 'django_spire/element/attribute_element.html' with attribute_title='Author' attribute_value=entry.current_version.author.get_full_name %}
{% include 'django_spire/element/attribute_element.html' with attribute_title='Status' %} {% include 'django_spire/knowledge/entry/badge/entry_status_badge.html' with status=entry.current_version.status %}
{% if entry.current_version.published_datetime %}
{% include 'django_spire/element/attribute_element.html' with attribute_title='Published' attribute_value=entry.current_version.published_datetime %}
{% endif %}
{% include 'django_spire/element/attribute_element.html' with attribute_title='Last Edit' attribute_value=entry.current_version.last_edit_datetime %}
{% include 'django_spire/element/attribute_element.html' with attribute_title='Tags' %} {% for tag, weight in entry.simplified_and_weighted_tag_dict|safe_dict_items %} {% include 'django_spire/tag/element/tag.html' %} {% endfor %}
{% endblock %} {% block knowledge_full_page_content %}
{% include 'django_spire/knowledge/entry/version/container/editor_container.html' %}
{% endblock %} {% block base_body_additional_bottom_js %} {{ block.super }} {% endblock %}