{% extends "page.html" %} {% block title %} File display - {{ config.TRACKER_NAME }} {% endblock %} {% block body_title %} File display {% endblock %} {% block content %} {% if not (context.is_view_ok() or request.user.hasRole('Anonymous')) %}

You are not allowed to view this page.

{% endif %} {% if not context.is_view_ok() and request.user.hasRole('Anonymous') %}

Please login with your username and password.

{% endif %} {% if context.is_view_ok() %}
Name {{ context.name.field()|safe }}
Content Type {{ context.type.field()|safe }}
{% if '@multilink' in request.form %} {% endif %} {{ context.submit()|safe }}
{% if context.id %} download {% endif %} {% endif %} {% if context.id %} {{ context.history()|safe }} {% endif %} {% endblock %}