本文整理汇总了Python中users.Users.add_user_from_table方法的典型用法代码示例。如果您正苦于以下问题:Python Users.add_user_from_table方法的具体用法?Python Users.add_user_from_table怎么用?Python Users.add_user_from_table使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类users.Users
的用法示例。
在下文中一共展示了Users.add_user_from_table方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: users
# 需要导入模块: from users import Users [as 别名]
# 或者: from users.Users import add_user_from_table [as 别名]
def users():
dsn = app.config['dsn']
page = Users(dsn)
if session['admin']:
if request.method == 'GET':
return page.show_users()
elif 'Add' in request.form:
username = request.form['UserName']
password = request.form['Password']
type = request.form['UserType']
if username and password and type:
return page.add_user_from_table(username, password, type)
else:
flash("You need to enter all the fields")
return page.show_users()
elif 'Delete' in request.form:
id = request.form.get('select', '')
if id:
return page.delete_user(id)
else:
flash("You need to select the user you want to delete using the radio buttons!")
return page.show_users()
elif 'Update' in request.form:
id = request.form.get('select', '')
username = request.form['UserName']
password = request.form['Password']
type = request.form['UserType']
if username and password and type and id:
return page.update_user(username, password, type, id)
else:
if not id:
flash("You need to select the user you want to update using the radio buttons!")
if not username or not password or not type:
flash("You need to enter all the fields")
return page.show_users()
elif 'Reset' in request.form:
return page.reset_table()
else:
flash("Only admins can access that page!")
return redirect(url_for('home'))