mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
7b21bfc074
prevent test order dependant failures. This involves introducing usage of `TestCase.urls` and implementing proper admin.py modules for some of the test apps. Thanks Florian Apolloner for finding the issue and contributing the patch. Refs #15294 (it solves these problems so the fix for that ticket we are going to commit doesn't introduce obscure and hard to reproduce test failures when running the Django test suite.) git-svn-id: http://code.djangoproject.com/svn/django/trunk@16856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
"""
|
|
A second, custom AdminSite -- see tests.CustomAdminSiteTests.
|
|
"""
|
|
from django.conf.urls import patterns
|
|
from django.contrib import admin
|
|
from django.http import HttpResponse
|
|
|
|
import models, forms, admin as base_admin
|
|
|
|
class Admin2(admin.AdminSite):
|
|
login_form = forms.CustomAdminAuthenticationForm
|
|
login_template = 'custom_admin/login.html'
|
|
logout_template = 'custom_admin/logout.html'
|
|
index_template = 'custom_admin/index.html'
|
|
password_change_template = 'custom_admin/password_change_form.html'
|
|
password_change_done_template = 'custom_admin/password_change_done.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, base_admin.ArticleAdmin)
|
|
site.register(models.Section, inlines=[base_admin.ArticleInline])
|
|
site.register(models.Thing, base_admin.ThingAdmin)
|
|
site.register(models.Fabric, base_admin.FabricAdmin)
|
|
site.register(models.ChapterXtra1, base_admin.ChapterXtra1Admin)
|