Move request.GET.items to ctx (#5889)

This commit is contained in:
Richard Schreiber
2026-02-12 12:05:08 +01:00
committed by GitHub
parent 4d60d7bfbc
commit d1686df07c
7 changed files with 7 additions and 6 deletions

View File

@@ -179,6 +179,7 @@ def _default_context(request):
ctx['html_page_header'] = "".join(h for h in _html_page_header if h)
ctx['footer'] = _footer
ctx['site_url'] = settings.SITE_URL
ctx['request_get_items'] = request.GET.items()
ctx['js_datetime_format'] = get_javascript_format_without_seconds('DATETIME_INPUT_FORMATS')
ctx['js_date_format'] = get_javascript_format_without_seconds('DATE_INPUT_FORMATS')