mirror of
https://github.com/django/django.git
synced 2025-10-27 07:36:08 +00:00
[1.10.x] Fixed #27018 -- Fixed admindocs crash with a view in a class.
Generated correct admindocs URLs on Python 3. URLs generate 404s on
Python 2, as in older versions of Django.
Backport of bc1e2d8e8e from master
This commit is contained in:
committed by
Tim Graham
parent
7c0c3fb6b1
commit
ae0f55eb49
18
tests/urlpatterns_reverse/method_view_urls.py
Normal file
18
tests/urlpatterns_reverse/method_view_urls.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
|
||||
class ViewContainer(object):
|
||||
def method_view(self, request):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
def classmethod_view(cls, request):
|
||||
pass
|
||||
|
||||
view_container = ViewContainer()
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', view_container.method_view, name='instance-method-url'),
|
||||
url(r'^$', ViewContainer.classmethod_view, name='instance-method-url'),
|
||||
]
|
||||
Reference in New Issue
Block a user