码迷,mamicode.com
首页 > 其他好文 > 详细

修改字段

时间:2015-07-20 18:20:02      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

The registration form allows some customization of its fields. While the core fields (email, password, user name and full name) are always mandatory, you can chose whether the other fields should be mandatory, optional, or even not displayed at all. Some additional fields, like city or country, are not displayed in the default form and are available if you want to request them from your users during registration.

This is configurable through the use of the REGISTRATION_EXTRA_FIELDS setting, which is a dictionary providing, for each of the fields, one of the following values:

  • required: to display the field, and make it mandatory
  • optional: to display the field, and make it non-mandatory
  • hidden: to not display the field

The default value of the setting is the following, set in edx-platform/lms/envs/common.py:

REGISTRATION_EXTRA_FIELDS = {
    ‘level_of_education‘: ‘optional‘,
    ‘gender‘: ‘optional‘,
    ‘year_of_birth‘: ‘optional‘,
    ‘mailing_address‘: ‘optional‘,
    ‘goals‘: ‘optional‘,
    ‘honor_code‘: ‘required‘,
    ‘city‘: ‘hidden‘country‘: ‘hidden‘,
}

修改字段

标签:

原文地址:http://www.cnblogs.com/zhaojianwei/p/4661605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!