2023-07-17 07:53:35 +00:00
|
|
|
from django.db import models
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
|
|
|
|
|
|
class ActionChoices(models.TextChoices):
|
|
|
|
reject = 'reject', _('Reject')
|
|
|
|
accept = 'accept', _('Accept')
|
|
|
|
review = 'review', _('Review')
|
2024-03-29 07:29:04 +00:00
|
|
|
warning = 'warning', _('Warn')
|
|
|
|
notice = 'notice', _('Notify')
|
2024-09-05 07:49:58 +00:00
|
|
|
notify_and_warn = 'notify_and_warn', _('Notify and warn')
|
2024-12-06 10:19:36 +00:00
|
|
|
face_verify = 'face_verify', _('Face Verify')
|
|
|
|
face_online = 'face_online', _('Face Online')
|