adds views for nav items

This commit is contained in:
Michael Beck 2025-03-30 20:37:44 +02:00
parent 9a29fbe47b
commit 36170462fa

View File

@ -10,5 +10,21 @@ def index():
def upload():
if request.method == "POST":
# CSV upload logic here
pass
pass
return render_template("upload.html")
@bp.route("/papers")
def papers():
return render_template("papers.html", app_title="PaperScraper")
@bp.route("/schedule")
def schedule():
return render_template("schedule.html", app_title="PaperScraper")
@bp.route("/logs")
def logs():
return render_template("logs.html", app_title="PaperScraper")
@bp.route("/about")
def about():
return render_template("about.html", app_title="PaperScraper")