Opened 18 years ago

Closed 18 years ago

#2527 closed defect (fixed)

view missing from django.contrib.admin.views.doc

Reported by: medhat Owned by: Adrian Holovaty
Component: Contrib apps Version: dev
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django.contrib.admin.urls has the following pattern:

('^doc/views/jump/$', 'django.contrib.admin.views.doc.jump_to_view'),

but the jump_to_view function does not exist in django.contrib.admin.views.doc.
I discovered this problem calling reverse (from urlresolvers.py) after [3554].

Change History (1)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [3564]) Fixed #2527 -- Removed /doc/views/jump/ from admin URLconf. It wasn't being used

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