mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2024-12-29 10:56:10 +00:00
18 lines
328 B
Python
18 lines
328 B
Python
"""
|
|
OnlyLegs - Settings page
|
|
"""
|
|
from flask import Blueprint, render_template
|
|
from flask_login import login_required
|
|
|
|
|
|
blueprint = Blueprint("settings", __name__, url_prefix="/settings")
|
|
|
|
|
|
@blueprint.route("/")
|
|
@login_required
|
|
def general():
|
|
"""
|
|
General settings page
|
|
"""
|
|
return render_template("settings.html")
|