Since the pages of Django Admin are all associated with model, how to create a page in the Admin background that is not associated with any model ?
Django Admin
model
Admin
认证0级讲师
Reference article: Django Admin creates a custom page not associated with any model
custom_view.html
@staff_member_required def custom_view(request): #. . . create objects of MyModel . . . #. . . call their processing methods . . . #. . . store in context variable . . . r = render_to_response('admin/myapp/custom_view.html', context, RequestContext(request)) return HttpResponse(r)
from myapp.views import custom_view urlpatterns = [ url(r'^admin/custom_link/$', custom_view, name='custom_name'), url(r'^$', RedirectView.as_view(url='/admin/')), url(r'^admin/', admin.site.urls), ]
Reference article: Django Admin creates a custom page not associated with any model
templates
views.py
urls.py