From 6e47d43a03011450cd45c18cb2649c91495ffb1b Mon Sep 17 00:00:00 2001 From: retoor Date: Sun, 9 Nov 2025 01:35:03 +0100 Subject: [PATCH] Update. --- retoors/templates/pages/shared_folder.html | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 retoors/templates/pages/shared_folder.html diff --git a/retoors/templates/pages/shared_folder.html b/retoors/templates/pages/shared_folder.html new file mode 100644 index 0000000..012fe45 --- /dev/null +++ b/retoors/templates/pages/shared_folder.html @@ -0,0 +1,64 @@ +{% extends "layouts/base.html" %} + +{% block title %}Shared Folder - Retoor's Cloud Solutions{% endblock %} + +{% block head %} + +{% endblock %} + +{% block content %} +
+

Shared Folder

+ +
+ + + + + + + + + + + {% if files %} + {% for item in files %} + + + + + + + {% endfor %} + {% else %} + + + + {% endif %} + +
NameLast ModifiedSizeActions
+ {% if item.is_dir %} + Folder Icon + {{ item.name }} + {% else %} + File Icon + {{ item.name }} + {% endif %} + {{ item.last_modified[:10] }} + {% if item.is_dir %} + -- + {% else %} + {{ (item.size / 1024 / 1024)|round(2) }} MB + {% endif %} + +
+ {% if not item.is_dir %} + ⬇️ + {% endif %} +
+
+

No files found in this shared directory.

+
+
+
+{% endblock %}