mirror of
https://github.com/django/django.git
synced 2025-08-02 10:02:41 +00:00
Fixed #24055 -- Keep reference to view class for resolve()
This commit is contained in:
parent
67235fd4ef
commit
a420f83e7d
9 changed files with 42 additions and 2 deletions
|
@ -11,7 +11,7 @@ from django.core.checks import Error
|
|||
from django.core.files import temp as tempfile
|
||||
from django.core.exceptions import ImproperlyConfigured
|
||||
from django.core.urlresolvers import (NoReverseMatch,
|
||||
get_script_prefix, reverse, set_script_prefix)
|
||||
get_script_prefix, resolve, reverse, set_script_prefix)
|
||||
# Register auth models with the admin.
|
||||
from django.contrib.auth import get_permission_codename
|
||||
from django.contrib.admin import ModelAdmin
|
||||
|
@ -56,6 +56,7 @@ from .models import (Article, BarAccount, CustomArticle, EmptyModel, FooAccount,
|
|||
Simple, UndeletableObject, UnchangeableObject, Choice, ShortMessage,
|
||||
Telegram, Pizza, Topping, FilteredManager, City, Restaurant, Worker,
|
||||
ParentWithDependentChildren, Character, FieldOverridePost, Color2)
|
||||
from . import customadmin
|
||||
from .admin import site, site2, CityAdmin
|
||||
|
||||
|
||||
|
@ -749,6 +750,12 @@ class AdminViewBasicTest(AdminViewBasicTestCase):
|
|||
with self.assertRaises(NoReverseMatch):
|
||||
reverse('admin:app_list', args=('admin_views2',))
|
||||
|
||||
def test_resolve_admin_views(self):
|
||||
index_match = resolve('/test_admin/admin4/')
|
||||
list_match = resolve('/test_admin/admin4/auth/user/')
|
||||
self.assertIs(index_match.func.admin_site, customadmin.simple_site)
|
||||
self.assertIsInstance(list_match.func.model_admin, customadmin.CustomPwdTemplateUserAdmin)
|
||||
|
||||
def test_proxy_model_content_type_is_used_for_log_entries(self):
|
||||
"""
|
||||
Log entries for proxy models should have the proxy model's content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue