mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-29 08:37:06 +00:00
21 lines
552 B
Python
21 lines
552 B
Python
# ~*~ coding: utf-8 ~*~
|
|
#
|
|
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .models import Terminal
|
|
|
|
|
|
class TerminalForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Terminal
|
|
fields = ['name', 'remote_addr', 'ssh_port', 'http_port', 'comment', 'command_storage']
|
|
help_texts = {
|
|
'ssh_port': _("Coco ssh listen port"),
|
|
'http_port': _("Coco http/ws listen port"),
|
|
}
|
|
widgets = {
|
|
'name': forms.TextInput(attrs={'readonly': 'readonly'})
|
|
}
|