From a13d726899952a3f36754d1a3929a8122e990ba1 Mon Sep 17 00:00:00 2001 From: Miguel Astor Date: Sun, 30 Jul 2023 21:20:38 -0400 Subject: [PATCH] Increased row lenght to 7 in table layout. --- viewer/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewer/views.py b/viewer/views.py index d502c99..fe65955 100644 --- a/viewer/views.py +++ b/viewer/views.py @@ -23,7 +23,7 @@ def gallery_view(request, path = None): The path should be inside the GALLERY_ROOT path, otherwise a 404 error will be thrown. """ - def list2rows(lst, cells = 5): + def list2rows(lst, cells = 7): rows = [] i = 0 while i < len(lst):