{% extends 'django_spire/knowledge/page/full_page.html' %} {% load spire_core_tags %} {% block full_page_sub_navigation_title %} {{ collection.name_short }} {% endblock %} {% block full_page_sub_navigation_buttons %} {% if AuthController.knowledge.can_add %} {% url 'django_spire:knowledge:collection:form:create_with_parent' parent_pk=collection.id as create_url %} {% include 'django_spire/button/primary_button.html' with button_text='Add' button_href=create_url button_icon="bi bi-plus" %} {% endif %} {% 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 knowledge_full_page_content %}
{{ collection.name }}
Description:
{{ collection.description }}
Sub Collections:
{{ collection.children.count }}
Entries:
{{ collection.entries.count }}
Popular Collections & Entries ETC
Last Edits ETC
Tags: {% for tag, weight in collection.simplified_and_weighted_tag_dict|safe_dict_items %} {% include 'django_spire/tag/element/tag.html' %} {% endfor %}
Aggregated Tags: {% for tag, weight in collection.services.tag.get_simplified_and_weighted_aggregated_tag_set|safe_dict_items %} {% include 'django_spire/tag/element/tag.html' %} {% endfor %}
{% endblock %}