Bin
2025-12-17 bc6aa38242b0a7dea4b18bc90e2d78740436a58b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.db import models
from django.utils.translation import gettext_lazy as _
 
 
class ActionType(models.TextChoices):
    CREATED_FROM_PREDICTION = 'prediction', _('Created from prediction')
    PROPAGATED_ANNOTATION = 'propagated_annotation', _('Created from another annotation')
    IMPORTED = 'imported', _('Imported')
    SUBMITTED = 'submitted', _('Submitted')
    UPDATED = 'updated', _('Updated')
    SKIPPED = 'skipped', _('Skipped')
    ACCEPTED = 'accepted', _('Accepted')
    REJECTED = 'rejected', _('Rejected')
    FIXED_AND_ACCEPTED = 'fixed_and_accepted', _('Fixed and accepted')
    DELETED_REVIEW = 'deleted_review', _('Deleted review')