From 2ae8de810d9c6da11f3e79399700c0c804114a7e Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Tue, 5 Dec 2023 16:41:23 +0330 Subject: [PATCH] fix: request context processor added before this, if you ran migrate, this would show up: WARNINGS: 'django.template.context_processors.request' must be enabled in DjangoTemplates close #335 --- workbench/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/workbench/settings.py b/workbench/settings.py index 7acc7360..e4cb962b 100644 --- a/workbench/settings.py +++ b/workbench/settings.py @@ -43,6 +43,7 @@ 'django.template.context_processors.debug', 'django.template.context_processors.i18n', 'django.template.context_processors.media', + 'django.template.context_processors.request', 'django.template.context_processors.static', 'django.template.context_processors.tz', 'django.contrib.messages.context_processors.messages',