Fixed #35867, Refs #2411 -- Allowed links in admindocs view details summary.

This commit is contained in:
sai-ganesh-03 2024-10-31 19:10:00 +05:30 committed by Sarah Boyce
parent 4fcbdb11b1
commit 968397228f
6 changed files with 32 additions and 6 deletions

View file

@ -18,3 +18,12 @@ class XViewClass(View):
class XViewCallableObject(View):
def __call__(self, request):
return HttpResponse()
class CompanyView(View):
"""
This is a view for :model:`myapp.Company`
"""
def get(self, request):
return HttpResponse()