fullname.py 183 B

12345678
  1. from django.utils.translation import ugettext_lazy as _
  2. from . import TextProfileField
  3. class FullNameField(TextProfileField):
  4. fieldname = 'fullname'
  5. label = _("Full name")