mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-07 07:37:16 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from .common import Asset
|
|
|
|
|
|
class GPT(Asset):
|
|
proxy = models.CharField(max_length=128, blank=True, default='', verbose_name=_("Proxy"))
|
|
|
|
class Meta:
|
|
verbose_name = _("Web")
|