mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
13 lines
300 B
Python
13 lines
300 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from auditlog_tests.views import SimpleModelDetailview
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path(
|
|
"simplemodel/<int:pk>/",
|
|
SimpleModelDetailview.as_view(),
|
|
name="simplemodel-detail",
|
|
),
|
|
]
|