{% load base_filters %} {% load base_tags %} {% load committee_tags %} {% load perm_tags %} {% load tagging_tags %} {% load i18n %} {% has_perm user committees.change_committee committee as can_edit %} {% has_perm user committees.delete_committee committee as can_delete %} {% tags_for_object committee as tags %}
{% with committee.category_set as committee_cat %} {% if committee_cat %}
{% trans "Category:" %} {{ committee_cat.category }} {% if committee_cat.sub_category %} | {% trans "Sub Category:" %} {{ committee_cat.sub_category }} {% endif %}
{% endif %} {% endwith %} {% if tags %}
Tags: {% for tag in tags %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %} {% if user.is_authenticated %} {% endif %}
{% if can_edit %}
{% endif %}