{% extends 'base.html' %} {% block content %}

{{ page_path|safe }}

{% if item_type == "dir" %} {% include "directory_details.html" %} {% elif item_type == "audio" or item_type == "video" %} {% include "file_detail.html" %} {% endif %} {% if audio_player %} {% include "audio_player.html" with context %} {% endif %} {% if video_player %} {% include "video_player.html" with context %} {% endif %} {% endblock %}