diff options
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/templates/accounts/index.html | 3 | ||||
-rw-r--r-- | accounts/views.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/accounts/templates/accounts/index.html b/accounts/templates/accounts/index.html index 4133270..341fd7d 100644 --- a/accounts/templates/accounts/index.html +++ b/accounts/templates/accounts/index.html @@ -366,6 +366,9 @@ function send(id) { var form = document.getElementById('form1'); var action = document.getElementById('action'); action.setAttribute('value', id); + $(':disabled').each(function(e) { + $(this).removeAttr('disabled'); + }) form.submit(); } diff --git a/accounts/views.py b/accounts/views.py index d8de4fe..598d300 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -488,7 +488,7 @@ def personal_wrapper(request, error, error_text): resp_data = resp.json() - midata_disable = " disabled" + midata_disable = " readonly disabled" request.user.first_name = resp_data["first_name"] request.user.last_name = resp_data["last_name"] request.user.email = resp_data["email"] |