mirror of
https://github.com/aljazceru/CTFd.git
synced 2026-02-01 20:34:36 +01:00
* Replace user facing pagination with Flask SQLAlchemy Pagination objects * Closes #1353 I think this is a big improvement but I feel like this is harder to create a theme construct around.
58 lines
1.4 KiB
Python
58 lines
1.4 KiB
Python
from flask import Blueprint, render_template, request
|
|
|
|
from CTFd.models import Users
|
|
from CTFd.utils import config
|
|
from CTFd.utils.decorators import authed_only
|
|
from CTFd.utils.decorators.visibility import (
|
|
check_account_visibility,
|
|
check_score_visibility,
|
|
)
|
|
from CTFd.utils.user import get_current_user
|
|
|
|
users = Blueprint("users", __name__)
|
|
|
|
|
|
@users.route("/users")
|
|
@check_account_visibility
|
|
def listing():
|
|
page = abs(request.args.get("page", 1, type=int))
|
|
|
|
users = (
|
|
Users.query.filter_by(banned=False, hidden=False)
|
|
.order_by(Users.id.asc())
|
|
.paginate(page=page, per_page=10)
|
|
)
|
|
|
|
return render_template("users/users.html", users=users)
|
|
|
|
|
|
@users.route("/profile")
|
|
@users.route("/user")
|
|
@authed_only
|
|
def private():
|
|
user = get_current_user()
|
|
|
|
solves = user.get_solves()
|
|
awards = user.get_awards()
|
|
|
|
place = user.place
|
|
score = user.score
|
|
|
|
return render_template(
|
|
"users/private.html",
|
|
solves=solves,
|
|
awards=awards,
|
|
user=user,
|
|
score=score,
|
|
place=place,
|
|
score_frozen=config.is_scoreboard_frozen(),
|
|
)
|
|
|
|
|
|
@users.route("/users/<int:user_id>")
|
|
@check_account_visibility
|
|
@check_score_visibility
|
|
def public(user_id):
|
|
user = Users.query.filter_by(id=user_id, banned=False, hidden=False).first_or_404()
|
|
return render_template("users/public.html", user=user)
|