{% extends 'django_spire/knowledge/page/full_page.html' %} {% 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 in collection.tags.all %} {{ tag.name }} {% endfor %}
Aggregated Tags: {% for tag in collection.services.tag.get_aggregated_tag_set %} {{ tag }} {% endfor %}
{% endblock %}