python - Django Admin creates a custom page not associated with any model
PHP中文网
PHP中文网 2017-06-28 09:23:56
0
1
895

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 ?

PHP中文网
PHP中文网

认证0级讲师

reply all(1)
三叔

Reference article: Django Admin creates a custom page not associated with any model

templates

custom_view.html

views.py

@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)

urls.py

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),
]
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template