Beispiel #1
0
def all_users():
    return render_template("auth/allusers.html", all_users=User.all_users())
Beispiel #2
0
def my_profile():
    return render_template("auth/myprofile.html",
                           my_tasks=User.my_tasks(),
                           all_users=User.all_users())