mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
556 B
27 lines
556 B
5 years ago
|
# coding: utf-8
|
||
|
#
|
||
|
|
||
|
|
||
|
from django import forms
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
from .. import models
|
||
|
|
||
|
__all__ = ['DatabaseAppMySQLForm']
|
||
|
|
||
|
|
||
|
class BaseDatabaseAppForm(forms.ModelForm):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
self.fields['type'].widget.attrs['disabled'] = True
|
||
|
|
||
|
class Meta:
|
||
|
model = models.DatabaseApp
|
||
|
fields = [
|
||
|
'name', 'type', 'host', 'port', 'database', 'comment'
|
||
|
]
|
||
|
|
||
|
|
||
|
class DatabaseAppMySQLForm(BaseDatabaseAppForm):
|
||
|
pass
|