Catch up with uncommitted changes
This commit is contained in:
Binary file not shown.
@@ -2,7 +2,16 @@ from applets.software import bp
|
||||
from flask import Flask, request, session, redirect, \
|
||||
url_for, render_template, flash, Blueprint
|
||||
# we use this neat little trick to get config data from the main app
|
||||
from flask import current_ap
|
||||
from flask import current_app
|
||||
|
||||
|
||||
@bp.route('/users')
|
||||
def users_root():
|
||||
"""
|
||||
Users screen for the webui.
|
||||
"""
|
||||
string_dict = build_stringlist()
|
||||
return render_template('users.html', string_dict=string_dict)
|
||||
|
||||
|
||||
def build_stringlist():
|
||||
|
||||
Reference in New Issue
Block a user