aboutsummaryrefslogtreecommitdiffstats
path: root/client/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'client/views.py')
-rw-r--r--client/views.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/views.py b/client/views.py
index d4e9709..79783f1 100644
--- a/client/views.py
+++ b/client/views.py
@@ -15,6 +15,16 @@ from datetime import datetime
import pytz
from random import randint
+def migration_usercode(void):
+ usercodes = UserCode.objects.all()
+ for uc in usercodes:
+ user = uc.user
+ uc.first_name = user.first_name
+ uc.last_name = user.last_name
+ uc.email = user.email
+ uc.branca = user.groups.all()[0]
+ uc.save()
+
@login_required()
def index(request):
context = {}