diff --git a/archivist/apps/templates/files/upload.html b/archivist/apps/templates/files/upload.html index 6f3dc19..5c40532 100644 --- a/archivist/apps/templates/files/upload.html +++ b/archivist/apps/templates/files/upload.html @@ -1,5 +1,59 @@ -
- {% csrf_token %} - {{ form.as_p }} - -
\ No newline at end of file +{% extends "layouts/base-fullscreen.html" %} + +{% load static %} + +{% block title %} Upload {% endblock %} + + +{% block stylesheets %}{% endblock stylesheets %} + +{% block body_class %}{% endblock %} + +{% block content %} + + {% include 'includes/navigation-transparent.html' %} + + + +
+
+
+ {% if error_message %} + + {% endif %} + {% csrf_token %} + {{ form.as_p }} + +
+ +
+ {% comment %} {% include 'includes/footer.html' %} {% endcomment %} +
+ +{% endblock content %} + + +{% block javascripts %}{% endblock javascripts %} \ No newline at end of file