mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
hide compute login password for tcp/tls connections
This commit is contained in:
parent
015719b952
commit
6a8d713ae6
1 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,7 @@ class TcpComputeForm(forms.ModelForm):
|
|||
|
||||
class Meta:
|
||||
model = Compute
|
||||
widgets = {'password': forms.PasswordInput()}
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
|
@ -30,6 +31,7 @@ class TlsComputeForm(forms.ModelForm):
|
|||
|
||||
class Meta:
|
||||
model = Compute
|
||||
widgets = {'password': forms.PasswordInput()}
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue