Skip to content

Commit

Permalink
fix: squash context_processors.request DjangoTemplates warning
Browse files Browse the repository at this point in the history
Running the project yields an error like:

    ?: (admin.W411) 'django.template.context_processors.request' must be enabled in DjangoTemplates (TEMPLATES) in order to use the admin navigation sidebar.

This commit squashes this error.
  • Loading branch information
pshiu committed Jun 9, 2022
1 parent 37ed8c7 commit e18a956
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions commerce_coordinator/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ def root(*x):
'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',
Expand Down

0 comments on commit e18a956

Please sign in to comment.