CHANGE: Remove phone number field from initial registration

Closes #354
This commit is contained in:
2020-01-13 20:36:50 +00:00
parent 1480ae17fa
commit f616017423
3 changed files with 7 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ def user_created(sender, user, request, **kwargs):
user.first_name = form.data['first_name']
user.last_name = form.data['last_name']
user.initials = form.data['initials']
user.phone = form.data['phone']
# user.phone = form.data['phone']
user.save()