diff --git a/recruitment/models.py b/recruitment/models.py index 4813e833b..64cba36fa 100644 --- a/recruitment/models.py +++ b/recruitment/models.py @@ -633,7 +633,7 @@ class Candidate(HorillaModel): schedule_date = models.DateTimeField( blank=True, null=True, verbose_name=_("Schedule date") ) - email = models.EmailField(max_length=254, unique=True, verbose_name=_("Email")) + email = models.EmailField(max_length=254, verbose_name=_("Email")) mobile = models.CharField( max_length=15, blank=True, diff --git a/recruitment/templates/candidate/application_form.html b/recruitment/templates/candidate/application_form.html index 0c7d58c89..f87d34e77 100644 --- a/recruitment/templates/candidate/application_form.html +++ b/recruitment/templates/candidate/application_form.html @@ -59,6 +59,7 @@ {{ form.profile.errors }} + {{ form.non_field_errors }}