{% extends "drive/layout.html" %} {% load static %} {% block body %} {% if user.is_authenticated %}
{% csrf_token %}

File Name: {{ file.name }}

Owner: {{ file.user }}

File Size: {{ file.formatted_size }}

Type: {{ file.type }}

Uploaded at: {{ file.uploaded_at }}

Access: {% if not file.sharing_status %} Not Shared {% elif file.access_permissions == 'Restricted' %} Restricted {% elif file.access_permissions == 'Everyone' %} Everyone {% endif %}

Download Home

Selected Users

{% endif %} {% endblock %}