1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

add a (dead simple) dashboard. Fixes #42

This commit is contained in:
Alexis Metaireau 2011-11-28 00:36:00 +01:00
parent fc88b65bbe
commit 7dd7d1d14f

View file

@ -357,3 +357,7 @@ def create_archive():
flash(_("The data from XX to XX has been archived")) flash(_("The data from XX to XX has been archived"))
return render_template("create_archive.html", form=form) return render_template("create_archive.html", form=form)
@main.route("/dashboard")
def dashboard():
return render_template("dashboard.html", projects=Project.query.all())