{% extends 'secup/base.html' %} {% block content %} {% if uploads %} Uploads related with you:
{% for upload in uploads %} {% endfor %}
ID Uploader File Description Signed Upload URL Created Updated
{{upload.id}} {% if not upload.uploader %}{{upload.uploader_email}}{% else %}{{upload.uploader.email}}{% endif %} {% if not upload.file %}Waiting to upload{% else %}{{upload.file}}{% endif %} {{ upload.description }} {% if upload.upload_url %}Link{% endif %} {{ upload.created_at }} {{ upload.updated_at }}
{% endif %} {% endblock %}