Commit 37bb3441 authored by ibuler's avatar ibuler

[Bugfix] 修复网关端口不对的问题

parent f8c2a445
......@@ -75,10 +75,10 @@ var port = '#' + '{{ form.port.id_for_label }}';
function protocolChange() {
if ($(protocol_id + " option:selected").text() === 'rdp') {
$(port).val(3389);
{#$(port).val(3389);#}
$(private_key_id).closest('.form-group').addClass('hidden')
} else {
$(port).val(22);
{#$(port).val(22);#}
$(private_key_id).closest('.form-group').removeClass('hidden')
}
}
......
......@@ -140,11 +140,6 @@ class DomainGatewayUpdateView(AdminUserRequiredMixin, UpdateView):
domain = self.object.domain
return reverse('assets:domain-gateway-list', kwargs={"pk": domain.id})
def form_valid(self, form):
response = super().form_valid(form)
print(form.cleaned_data)
return response
def get_context_data(self, **kwargs):
context = {
'app': _('Assets'),
......
......@@ -5,4 +5,4 @@ python3 ../apps/manage.py makemigrations
python3 ../apps/manage.py migrate
python3 ../apps/manage.py makemigrations –merge
python3 ../apps/manage.py makemigrations –-merge
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment