mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-09-03 20:52:56 -05:00
Use more common names for first and last name labels
This commit is contained in:
@@ -3,8 +3,8 @@ from turbogears import validators, widgets
|
||||
from tg_expanding_form_widget.tg_expanding_form_widget import ExpandingForm
|
||||
|
||||
class UserFields(object):
|
||||
givenname = widgets.TextField(name="givenname", label="Given Name")
|
||||
sn = widgets.TextField(name="sn", label="Family Name")
|
||||
givenname = widgets.TextField(name="givenname", label="First Name")
|
||||
sn = widgets.TextField(name="sn", label="Last Name")
|
||||
cn = widgets.TextField(name="cn", label="Common Names")
|
||||
cns = ExpandingForm(name="cns", label="Common Names", fields=[cn])
|
||||
title = widgets.TextField(name="title", label="Title")
|
||||
|
||||
Reference in New Issue
Block a user