From 292f8e629826b4b9b94624a2a2041b46dbc0b407 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Wed, 13 Oct 2021 14:14:09 +0200 Subject: [PATCH] Allow more fields in URL --- photo21/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/photo21/settings.py b/photo21/settings.py index f5aaaa0..08250a8 100644 --- a/photo21/settings.py +++ b/photo21/settings.py @@ -156,6 +156,9 @@ LANGUAGES = [ ('fr', _('French')), ] +# Allow more fields in URL to edit large galleries +DATA_UPLOAD_MAX_NUMBER_FIELDS = 10240 + # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.2/howto/static-files/