Re: [PATCH 3/5] settings: Add context processor django.template.context_processors.request

2020-09-26 Thread Stephen Finucane
On Fri, 2020-08-28 at 00:14 +1000, Andrew Donnellan wrote:
> Django 3.1 adds a new admin sidebar feature that requires the
> django.template.context_processors.request context processor to be enabled
> in the settings.
> 
> Signed-off-by: Andrew Donnellan 

Compatible with Django 3.0 also. LGTM.

Reviewed-by: Stephen Finucane 

___
Patchwork mailing list
Patchwork@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/patchwork


[PATCH 3/5] settings: Add context processor django.template.context_processors.request

2020-08-27 Thread Andrew Donnellan
Django 3.1 adds a new admin sidebar feature that requires the
django.template.context_processors.request context processor to be enabled
in the settings.

Signed-off-by: Andrew Donnellan 
---
 patchwork/settings/base.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/patchwork/settings/base.py b/patchwork/settings/base.py
index 001878acb134..c1bb9b27fac8 100644
--- a/patchwork/settings/base.py
+++ b/patchwork/settings/base.py
@@ -57,6 +57,7 @@ TEMPLATES = [
 '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',
-- 
2.20.1

___
Patchwork mailing list
Patchwork@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/patchwork