mirror of
https://github.com/django/django.git
synced 2024-11-22 03:18:31 +01:00
473283d241
Added AdminSite.get_log_entries() as an override point and made this available to the template via each_context().
9 lines
184 B
Python
9 lines
184 B
Python
from django.urls import path
|
|
|
|
from .admin import custom_site, site
|
|
|
|
urlpatterns = [
|
|
path("test_admin/admin/", site.urls),
|
|
path("test_admin/custom_admin/", custom_site.urls),
|
|
]
|