From ecde63333d85cf6a0e0323ef38eaeb22e4119e22 Mon Sep 17 00:00:00 2001 From: Aaron Lee Date: Wed, 15 Sep 2021 19:30:09 +0800 Subject: [PATCH] Change username behavior --- app.py | 14 +++++++------- templates/homeroom.html | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app.py b/app.py index f744c7a..a24fe6a 100644 --- a/app.py +++ b/app.py @@ -392,13 +392,13 @@ def upload_homeroom(): for row in csv_dict: if row['number'] == 'password': auth.create_user_with_email_and_password( - gradec + '^' + classc + "@group-attendance.fhjh.tp.edu.tw", row['name']) + gradec + classc + "@group-attendance.fhjh.tp.edu.tw", row['name']) user = auth.sign_in_with_email_and_password( - gradec + '^' + classc + "@group-attendance.fhjh.tp.edu.tw", row['name']) + gradec + classc + "@group-attendance.fhjh.tp.edu.tw", row['name']) db.child("Users").child(user['localId']).update({ "permission": 'homeroom', - "username": gradec + '^' + classc, - "homeroom": gradec + '^' + classc + "username": gradec + classc, + "homeroom": gradec + classc }) else: db.child("Homerooms").child(gradec).child( @@ -434,12 +434,12 @@ def upload_gp_classes(): db.child("Classes").child("GP_Class").child(csv_dict.columns[i+1]).child("Class").child( tmp_csv[j]).child("name").set(tmp_csv[j+1] + " : " + tmp_csv[j+2] + " (" + tmp_csv[j+3] + ")") auth.create_user_with_email_and_password( - csv_dict.columns[i+1] + "^" + tmp_csv[j] + "@group-attendance.fhjh.tp.edu.tw", tmp_csv[j+4]) + tmp_csv[j] + "@group-attendance.fhjh.tp.edu.tw", tmp_csv[j+4]) user = auth.sign_in_with_email_and_password( - csv_dict.columns[i+1] + "^" + tmp_csv[j] + "@group-attendance.fhjh.tp.edu.tw", tmp_csv[j+4]) + tmp_csv[j] + "@group-attendance.fhjh.tp.edu.tw", tmp_csv[j+4]) db.child("Users").child(user['localId']).update({ "permission": 'group', - "username": csv_dict.columns[i+1] + "^" + tmp_csv[j], + "username": tmp_csv[j], "class": { csv_dict.columns[i+1]: tmp_csv[j], } diff --git a/templates/homeroom.html b/templates/homeroom.html index 96d6a40..78c3b69 100644 --- a/templates/homeroom.html +++ b/templates/homeroom.html @@ -140,7 +140,7 @@ Homeroom Teacher Already Confirmed | 班導已確認 {% else %} + Teacher Confirm | 班導確認 {% endif %}