diff --git a/portail_citoyen/models.py b/portail_citoyen/models.py index 8e65e3f..8c48576 100644 --- a/portail_citoyen/models.py +++ b/portail_citoyen/models.py @@ -44,7 +44,8 @@ class Citoyen(AbstractUser): USERNAME = 'username' USER_PROFILE = ( 'title', 'username', 'first_name', 'last_name', 'email', 'phone', 'mobile', 'address', 'postal_code', 'city', 'roles') - + REGISTER_FIELDS = ( 'title', 'username', 'first_name', 'last_name', 'email', + 'phone', 'mobile', 'address', 'postal_code', 'city') from authentic2.attribute_aggregator.core import ATTRIBUTE_MAPPING ATTRIBUTE_MAPPING['l']['profile_field_name'] = 'city'