mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
f751d5b713
This case pops up with generic foreign key inlines after [9297]. Added tests to handle future regressions with generic foreign key inlines in the admin. Thanks markus and danielr for patches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9412 bcc190cf-cafb-0310-a4f2-bffc1f526a37
7 lines
142 B
Python
7 lines
142 B
Python
from django.conf.urls.defaults import *
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^admin/(.*)', admin.site.root),
|
|
)
|