mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-02 07:01:30 +00:00
10 lines
206 B
Python
10 lines
206 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
from django.db.models import TextChoices
|
|
|
|
|
|
class SiteMessageDisplayMode(TextChoices):
|
|
default = '', _('Default')
|
|
popup = 'popup', _('Popup')
|
|
|