Skip to content

Commit

Permalink
Übersicht nach Zoras Plan #171
Browse files Browse the repository at this point in the history
  • Loading branch information
SpotlightForBugs committed Aug 27, 2022
1 parent 9221e75 commit 724e443
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,9 +917,7 @@ def wahlbalken():
with open("rollen_log.txt", encoding="UTF8") as players_log: # open the log file
players_log = players_log.readlines() # read the log file

print(players_log)

print("Test")


nurNamen = [] # create a list for the names

Expand Down Expand Up @@ -981,6 +979,12 @@ def wahl_stats():
return render_template("wahlstatus.html", name_tot=name_tot)




@app.route("/test")
def test():
return render_template("uebersicht.html")

@app.route("/sehen/<name>/<rolle>/<auswahl>")
def sehen(name, rolle, auswahl):
"""
Expand Down
24 changes: 24 additions & 0 deletions templates/uebersicht.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{% extends 'struktur.html' %}
<!--@generated-->




{% block body %}




{% endblock body %}












0 comments on commit 724e443

Please sign in to comment.