aboutsummaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2022-01-04 12:43:11 +0100
committerAndrea Lepori <alepori@student.ethz.ch>2022-01-04 12:43:20 +0100
commit7e73c53f3eeb6a2c74c80ee9a00648f8cc4e9ab3 (patch)
treecca4cd2ca79613727b023fcbe362df5914b8e9ca /accounts
parentautoupdate oauth token when expired (diff)
downloadscout-subs-7e73c53f3eeb6a2c74c80ee9a00648f8cc4e9ab3.tar.gz
scout-subs-7e73c53f3eeb6a2c74c80ee9a00648f8cc4e9ab3.zip
fix disabled fields not submitting
Diffstat (limited to 'accounts')
-rw-r--r--accounts/templates/accounts/index.html3
-rw-r--r--accounts/views.py2
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"]