diff --git a/templates/danger/manage-files.html b/templates/danger/manage-files.html new file mode 100644 index 0000000..38d2219 --- /dev/null +++ b/templates/danger/manage-files.html @@ -0,0 +1,109 @@ +{% extends "layouts/default.html" %} +{% block title %}Nicola Ellis & Ritherdon Archive{% endblock %} +{% block content %} +
+

Delete Files

+

+ Warning: Deleting files here might leave the site's database + out-of-sync. with the files stored on the server and corrupt the system. +

+

Archive Files

+
+ {% for item in archive-files %} +
+ {% if roles.administrator %} +
+ + + + +
+

{{item}}

+ {% endif %} +
+ {% endfor %} +
+ +

Pages Files

+
+ {% for item in pages-files %} +
+ {% if roles.administrator %} +
+ + + + +
+

{{item}}

+ {% endif %} +
+ {% endfor %} +
+ +

Media Files

+
+ {% for item in media-files %} +
+ {% if roles.administrator %} +
+ + + + +
+

{{item}}

+ {% endif %} +
+ {% endfor %} +
+
+{% endblock %}