default.py 382 B

123456789101112131415161718
  1. from django.utils.translation import ugettext_lazy as _
  2. from . import TextProfileField, TextareaProfileField
  3. class BioField(TextareaProfileField):
  4. fieldname = 'bio'
  5. label = _("Bio")
  6. class FullNameField(TextProfileField):
  7. fieldname = 'fullname'
  8. label = _("Full name")
  9. class LocationField(TextProfileField):
  10. fieldname = 'location'
  11. label = _("Location")