mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 00:09:14 +00:00
9 lines
198 B
Python
9 lines
198 B
Python
from django.utils.translation import gettext_lazy as _
|
|
from django.db import models
|
|
|
|
from .common import Asset
|
|
|
|
|
|
class Web(Asset):
|
|
url = models.CharField(max_length=1024, verbose_name=_("url"))
|