mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
also remove all flaskiness from static file serving. and reference all vendored scripts on the base tempĺate for simplicity.
20 lines
595 B
Python
20 lines
595 B
Python
from quart import g, abort, render_template
|
|
from http import HTTPStatus
|
|
|
|
from lnbits.decorators import check_user_exists, validate_uuids
|
|
from lnbits.extensions.amilk import amilk_ext
|
|
|
|
from .crud import get_amilk
|
|
|
|
|
|
@amilk_ext.route("/")
|
|
@validate_uuids(["usr"], required=True)
|
|
@check_user_exists()
|
|
async def index():
|
|
return await render_template("amilk/index.html", user=g.user)
|
|
|
|
|
|
@amilk_ext.route("/<amilk_id>")
|
|
async def wall(amilk_id):
|
|
amilk = get_amilk(amilk_id) or abort(HTTPStatus.NOT_FOUND, "AMilk does not exist.")
|
|
return await render_template("amilk/wall.html", amilk=amilk)
|