Michael Beck 1a9bd7c0b1 init
2025-03-30 18:44:30 +02:00

15 lines
352 B
Python

from flask import Blueprint, render_template, current_app, request
bp = Blueprint('main', __name__)
@bp.route("/")
def index():
return render_template("index.html")
@bp.route("/upload", methods=["GET", "POST"])
def upload():
if request.method == "POST":
# CSV upload logic here
pass
return render_template("upload.html")