Opened 15 years ago

Closed 15 years ago

#12076 closed (wontfix)

Admin template view using change_list.html doesn't provide "request" variable

Reported by: monokrome Owned by: nobody
Component: Uncategorized Version: dev
Severity: Keywords: django admin change list
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The admin/change_list.html template doesn't have access to the request variable after updating a project that was using django's SVN version from a week ago to today's current SVN version.

Change History (1)

comment:1 by Matt McClanahan, 15 years ago

Resolution: wontfix
Status: newclosed

It doesn't need to. Like the other admin views, it renders templates with RequestContext. If you want the request object in the context, enable the request context processor.

Note: See TracTickets for help on using tickets.
Back to Top