Skip to content
Snippets Groups Projects
Select Git revision
  • f5e3a8389b111057a2e0899934b0e136476676a0
  • master default protected
  • develop protected
  • feat_remove_attr
  • python2.7
  • python3.8
6 results

parfolds.py

Blame
  • choices.py 235 B
    from django.db import models
    from django.utils.translation import gettext_lazy as _
    
    
    class UnifiedFrameStatus(models.TextChoices):
        PROCESSING = "O", _("w obróbce")
        READY = "G", _("gotowe")
        VERIFIED = "S", _("sprawdzone")