Initial commit
This commit is contained in:
commit
5cda7bc309
28 changed files with 1173 additions and 0 deletions
9
yksa_kit/choices.py
Normal file
9
yksa_kit/choices.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from django.db import models
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
class RunStatus(models.TextChoices):
|
||||
RUNNING = "running", _("Running")
|
||||
SUCCESS = "success", _("Success")
|
||||
FAILED = "failed", _("Failed")
|
||||
SKIPPED = "skipped", _("Skipped")
|
||||
Loading…
Add table
Add a link
Reference in a new issue