mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
8d48eaa064
This change is backwards incompatible for anyone that is using the named URLs introduced in [9739]. Any usage of the old admin_XXX names need to be modified to use the new namespaced format; in many cases this will be as simple as a search & replace for "admin_" -> "admin:". See the docs for more details on the new URL names, and the namespace resolution strategy. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
32 lines
960 B
Python
32 lines
960 B
Python
"""
|
|
A second, custom AdminSite -- see tests.CustomAdminSiteTests.
|
|
"""
|
|
from django.conf.urls.defaults import patterns
|
|
from django.contrib import admin
|
|
from django.http import HttpResponse
|
|
|
|
import models
|
|
|
|
class Admin2(admin.AdminSite):
|
|
login_template = 'custom_admin/login.html'
|
|
index_template = 'custom_admin/index.html'
|
|
|
|
# A custom index view.
|
|
def index(self, request, extra_context=None):
|
|
return super(Admin2, self).index(request, {'foo': '*bar*'})
|
|
|
|
def get_urls(self):
|
|
return patterns('',
|
|
(r'^my_view/$', self.admin_view(self.my_view)),
|
|
) + super(Admin2, self).get_urls()
|
|
|
|
def my_view(self, request):
|
|
return HttpResponse("Django is a magical pony!")
|
|
|
|
site = Admin2(name="admin2")
|
|
|
|
site.register(models.Article, models.ArticleAdmin)
|
|
site.register(models.Section, inlines=[models.ArticleInline])
|
|
site.register(models.Thing, models.ThingAdmin)
|
|
site.register(models.Fabric, models.FabricAdmin)
|