Skip to content

Commit

Permalink
Update models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
michqm authored Sep 9, 2016
1 parent 9125373 commit 9f7ed3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 9f7ed3c

Please sign in to comment.