From 37bb344166f8fe77212772de965aeff170dfc8a3 Mon Sep 17 00:00:00 2001 From: ibuler Date: Thu, 5 Jul 2018 10:58:52 +0800 Subject: [PATCH] =?UTF-8?q?[Bugfix]=20=E4=BF=AE=E5=A4=8D=E7=BD=91=E5=85=B3?= =?UTF-8?q?=E7=AB=AF=E5=8F=A3=E4=B8=8D=E5=AF=B9=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/assets/templates/assets/gateway_create_update.html | 4 ++-- apps/assets/views/domain.py | 5 ----- utils/make_migrations.sh | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/apps/assets/templates/assets/gateway_create_update.html b/apps/assets/templates/assets/gateway_create_update.html index e0b10ba73..7c1bf14b2 100644 --- a/apps/assets/templates/assets/gateway_create_update.html +++ b/apps/assets/templates/assets/gateway_create_update.html @@ -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') } } diff --git a/apps/assets/views/domain.py b/apps/assets/views/domain.py index e6a353373..be6528219 100644 --- a/apps/assets/views/domain.py +++ b/apps/assets/views/domain.py @@ -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'), diff --git a/utils/make_migrations.sh b/utils/make_migrations.sh index b6068a1ca..fbe3e577c 100755 --- a/utils/make_migrations.sh +++ b/utils/make_migrations.sh @@ -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