2017-04-04 00:28:25 +02:00
|
|
|
# coding: utf-8
|
|
|
|
|
2018-12-28 23:46:24 +01:00
|
|
|
from allauth.socialaccount.models import SocialAccount
|
2018-12-26 22:00:36 +01:00
|
|
|
from functools import reduce
|
|
|
|
|
2017-04-04 00:28:25 +02:00
|
|
|
def choices_length (choices):
|
|
|
|
return reduce (lambda m, choice: max (m, len (choice[0])), choices, 0)
|
2018-12-28 23:46:24 +01:00
|
|
|
|
2018-12-29 16:23:57 +01:00
|
|
|
def en_scolarite(user):
|
|
|
|
return user.profil.en_scolarite
|