is_student=models.BooleanField('Student',default=True,blank=True,help_text="Tick this box if you are a current student at a secondary or tertiary institution in WA")
id_number=models.CharField('Student email or Drivers License',max_length=255,blank=False,help_text="Student emails should end with '@student.*.edu.au' and drivers licences should be in the format '<AU state> 1234567'")
# data used internally by the system, not to be touched, seen or heard (except when it is)
member_updated=models.DateTimeField('Internal UCC info last updated',auto_now=True)
is_student=models.BooleanField('Student',default=True,blank=True,help_text="Tick this box if you are a current student at a secondary or tertiary institution in WA")
id_number=models.CharField('Student email or Drivers License',max_length=255,blank=False,help_text="Student emails should end with '@student.*.edu.au' and drivers licences should be in the format '<AU state> 1234567'")
# data used internally by the system, not to be touched, seen or heard (except when it is)
member_updated=models.DateTimeField('Internal UCC info last updated',auto_now=True)