diff --git a/accounts/models.py b/accounts/models.py index 4a08289..6767ad6 100755 --- a/accounts/models.py +++ b/accounts/models.py @@ -15,7 +15,7 @@ class UserProfile(models.Model): living_group = models.CharField(max_length=30, blank=True) experience = models.TextField(blank=True) phone_number = PhoneNumberField(blank=True, help_text='An optional phone number we can use to reach you if necessary.') - photo = models.ImageField(upload_to=settings.DANCER_IMAGE_DIR, blank=True, help_text='An optional photo of yourself.') + photo = models.ImageField(upload_to=settings.DANCER_IMAGE_DIR, blank=True, help_text='An highly recommended photo of yourself.') ordering = ('username',) def __unicode__(self):