mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-26 23:51:55 +01:00
18 lines
343 B
Python
18 lines
343 B
Python
|
import uuid
|
||
|
|
||
|
from flask import jsonify, render_template, request, redirect, url_for
|
||
|
from datetime import datetime
|
||
|
|
||
|
from lnbits.db import open_db, open_ext_db
|
||
|
from lnbits.extensions.events import events_ext
|
||
|
|
||
|
|
||
|
@events_ext.route("/")
|
||
|
def index():
|
||
|
"""Main withdraw link page."""
|
||
|
|
||
|
return render_template(
|
||
|
"events/index.html"
|
||
|
)
|
||
|
|