{% extends "files/base.html" %} {% load file_tags %} {% load tagging_tags %} {% load base_filters %} {% load i18n %} {% tags_for_object file as tags %} {% block title %}{{ block.super }}{{ file.headline }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% file_nav request.user %}

{% trans "View File" %}

{% file_options request.user file %}

{% firstof file.name "Untitled" %}

{{ file.description }}
{% with file.category_set as file_cat %} {% if file_cat %}
{% trans "Category:" %} {{ file_cat.category }} {% if file_cat.sub_category %} | {% trans "Sub Category:" %} {{ file_cat.sub_category }} {% endif %}
{% endif %} {% endwith %} {% if tags %}
Tags: {% for tag in tags %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% endblock %}