add fixed-footer config template option

This commit is contained in:
Yannik Schmidt
2020-09-06 03:21:52 +02:00
parent 38845d1c08
commit ac9665defb
2 changed files with 3 additions and 2 deletions

View File

@@ -187,7 +187,8 @@ def thanks():
thanksTemplate = None
with open(thanksTemplatePath) as f:
thanksTemplate = flask.Markup(flask.render_template_string(f.read(), conf=app.config))
thanksTemplate = flask.Markup(flask.render_template_string(f.read(), conf=app.config,
footerFixBottom=True))
return flask.render_template("stub.html", content=thanksTemplate)