mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-02 12:44:43 +00:00
10 lines
263 B
Python
10 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"
|