{% extends "base.html" %}
{% block html_head_extra %}
{% endblock html_head_extra %}
{% block content %}
{{file.path}} ({{file.name}}) [{{file.id}}]
-------
{% if file.contents_safe -%}
{% if file.contents_preformatted -%}
{{file.contents | safe }}
{%- else -%}
{{file.contents | safe }}
{%- endif -%}
{%- else -%}
{{file.contents}}
{%- endif -%}
{% endblock content %}