本文整理汇总了Python中models.Group.add方法的典型用法代码示例。如果您正苦于以下问题:Python Group.add方法的具体用法?Python Group.add怎么用?Python Group.add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Group
的用法示例。
在下文中一共展示了Group.add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: admin_group
# 需要导入模块: from models import Group [as 别名]
# 或者: from models.Group import add [as 别名]
def admin_group():
form = GroupForm()
form.group_specialty.choices = [(h.id, h.long_form) for h in Specialty.get_all()]
if form.validate_on_submit():
Group.add(form.group_number.data, form.group_course.data, form.group_specialty.data)
flash(u'Спеціальність успішно додано')
return redirect_back('admin_group')
return render_template('admin_group.html', data=Group.get_all(), form=form)
示例2: group_create_view
# 需要导入模块: from models import Group [as 别名]
# 或者: from models.Group import add [as 别名]
def group_create_view(request):
"""Collects all information from the page and instanciates a new
group and its corresponding criteria.
"""
username = request.authenticated_userid
admin = User.lookup_by_attribute(username=username)[0]
if request.method == 'POST':
group = Group.add(name=request.params.get('name'),
description=request.params.get('description'),
admin=admin, users=[admin], forum=OrderedDict())
Criteria.add(location=request.params.getall('location'),
taste=request.params.getall('taste'),
diet=request.params.getall('diet'),
cost=request.params.getall('cost'),
age=request.params.getall('age'),
group=group)
return HTTPFound(request.route_url('group_detail',
group_name=group.name))
profile = {}
profile['criteria'] = Criteria()
profile['username'] = username
return profile