Tags:
{% for tag in help_file.tags|tag_split %}
{{ tag }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% with help_file.topics.all as topics %}
{% if topics %}
Topics:
{% for topic in topics %}
{{ topic }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% if user.is_authenticated %}
{% if not user.profile.is_superuser %}
{% if user == help_file.creator or user == help_file.owner %}
Owned by you{% if not help_file.status_detail == "active" %} - status: {{ help_file.obj_status }}{% endif %}
{% endif %}
{% endif %}
{% if user.profile.is_superuser or user == help_file.creator or user == help_file.owner %}
{% meta_creator_owner help_file %}
{% endif %}
{% endif %}