Added css_list to render_template for profile page

This commit is contained in:
Pieter-Jan Cassiman 2019-12-17 22:28:36 +01:00
parent 285c36f0cf
commit 98c57b161e

View file

@ -140,7 +140,7 @@ def about() -> str:
@login_required
def profile() -> str:
"Generate the profile view"
return render_template("profile.html")
return render_template("profile.html", themes_list=css_list())
@general_bp.route("/favicon.ico")