frame plan

This commit is contained in:
cellarspoon 2021-12-06 11:30:49 +01:00
parent 84f9f39356
commit ec5026a95c
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

9
app.py
View File

@ -48,15 +48,18 @@ def upload():
filename = secure_filename(f.filename)
f.save(os.path.join(CWD, "metadatum", filename))
return redirect(url_for("home"))
return render_template("index.html", upload_form=upload_form)
@app.route("/generate", methods=["POST"])
def generate():
upload_form = UploadForm()
if upload_form.validate_on_submit():
print(upload_form.title.data)
else:
print("didnt work")
# fix make_cards
# pass some sort of condition to render_template to sort out the frame
# render
pass
return render_template("index.html", upload_form=upload_form)