mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
9 lines
263 B
Python
9 lines
263 B
Python
from django.views.generic import DetailView
|
|
|
|
from auditlog.mixins import LogAccessMixin
|
|
from auditlog_tests.models import SimpleModel
|
|
|
|
|
|
class SimpleModelDetailview(LogAccessMixin, DetailView):
|
|
model = SimpleModel
|
|
template_name = "simplemodel_detail.html"
|