mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
update action number
This commit is contained in:
parent
e2c5134115
commit
2f2ef1a6a4
1 changed files with 4 additions and 4 deletions
|
|
@ -269,10 +269,10 @@ class LogEntry(models.Model):
|
|||
:py:attr:`Action.DELETE` and :py:attr:`Action.ACCESS`.
|
||||
"""
|
||||
|
||||
CREATE = "create"
|
||||
UPDATE = "update"
|
||||
DELETE = "delete"
|
||||
ACCESS = "access"
|
||||
CREATE = 0
|
||||
UPDATE = 1
|
||||
DELETE = 2
|
||||
ACCESS = 3
|
||||
|
||||
choices = (
|
||||
(CREATE, _("create")),
|
||||
|
|
|
|||
Loading…
Reference in a new issue