adds views for nav items
This commit is contained in:
parent
9a29fbe47b
commit
36170462fa
@ -10,5 +10,21 @@ def index():
|
|||||||
def upload():
|
def upload():
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
# CSV upload logic here
|
# CSV upload logic here
|
||||||
pass
|
pass
|
||||||
return render_template("upload.html")
|
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")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user