mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-01 12:14:49 +00:00
7 lines
124 B
Python
7 lines
124 B
Python
from django.conf.urls import url
|
|
from django.contrib import admin
|
|
|
|
|
|
urlpatterns = [
|
|
url(r"^admin/", admin.site.urls),
|
|
]
|