('is_superuser',models.BooleanField(default=False,help_text='Designates that this user has all permissions without explicitly assigning them.',verbose_name='superuser status')),
('bio',backend.models.TextNullField(help_text='Please enter here a short biographical information',null=True,verbose_name='short biography',blank=True)),
('created',models.DateTimeField(default=datetime.datetime.utcnow,null=True,verbose_name='Person record created')),
('expires',models.DateField(default=None,help_text='This person will be deleted after this date if the status is still dc and no Process has started',null=True,verbose_name='Expiration date for the account',blank=True)),
('pending',models.CharField(max_length=255,verbose_name='Nonce used to confirm this pending record',blank=True)),
('groups',models.ManyToManyField(related_query_name='user',related_name='user_set',to='auth.Group',blank=True,help_text='The groups this user belongs to. A user will get all permissions granted to each of his/her group.',verbose_name='groups')),
('groups',models.ManyToManyField(related_query_name='user',related_name='user_set',to='auth.Group',blank=True,help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.',verbose_name='groups')),
('user_permissions',models.ManyToManyField(related_query_name='user',related_name='user_set',to='auth.Permission',blank=True,help_text='Specific permissions for this user.',verbose_name='user permissions')),
],
options={
'db_table':'person',
},
bases=(models.Model,),
),
migrations.CreateModel(
name='AM',
...
...
@@ -55,12 +54,12 @@ class Migration(migrations.Migration):
@@ -69,20 +68,30 @@ class Migration(migrations.Migration):
('progress',models.CharField(max_length=20,choices=[('app_new','Applicant asked to enter the process'),('app_rcvd','Applicant replied to initial mail'),('app_hold','On hold before entering the queue'),('adv_rcvd','Received enough advocacies'),('poll_sent','Activity poll sent'),('app_ok','Advocacies have been approved'),('am_rcvd','Waiting for AM to confirm'),('am','Interacting with an AM'),('am_hold','AM hold'),('am_ok','AM approved'),('fd_hold','FD hold'),('fd_ok','FD approved'),('dam_hold','DAM hold'),('dam_ok','DAM approved'),('done','Completed'),('cancelled','Cancelled')])),