From 4b331ae467e130a970e6ed303d1b93ffd615ee91 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sun, 25 Aug 2024 10:12:42 +0200 Subject: [PATCH] Add: make tables responsive --- .../apps/templates/importer/source_urls.html | 60 ++++++++++--------- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/archivist/apps/templates/importer/source_urls.html b/archivist/apps/templates/importer/source_urls.html index 7d3ddb2..fc8bf80 100644 --- a/archivist/apps/templates/importer/source_urls.html +++ b/archivist/apps/templates/importer/source_urls.html @@ -24,36 +24,38 @@ - - - - - - - - {% if user.is_superuser or user.is_staff %} - +
+
URL:Category:Added On:Last Imported/Scaned:Added By
+ + + + + + + {% if user.is_superuser or user.is_staff %} + + {% endif %} + + + + + {% for url in SourceURLs %} + {% if url.source_type == "C" %} + + + + + + {% if user.is_superuser or user.is_staff %} + + {% endif %} + + {% endif %} - - - - - {% for url in SourceURLs %} - {% if url.source_type == "C" %} - - - - - - {% if user.is_superuser or user.is_staff %} - - {% endif %} - - - {% endif %} - {% endfor %} - -
URL:Category:Added On:Last Imported/Scaned:Added By:Active:
{{ url.url }}{{ url.category }}{{ url.date_added|date:'Y-m-d H:i' }}{{ url.last_imported|date:'Y-m-d H:i' }}{{ url.added_by_user|capfirst }}{{ url.active }}
Active
{{ url.url }}{{ url.category }}{{ url.date_added|date:'Y-m-d H:i' }}{{ url.last_imported|date:'Y-m-d H:i' }}{{ url.added_by_user|capfirst }}{{ url.active }}
+ {% endfor %} + + +