Fixed Flask code, changed first button to update first person, added function to update buttons for all but the first person

This commit is contained in:
hannes-kl 2019-02-13 23:29:58 +01:00
parent f798a27a90
commit 140d01a460
2 changed files with 20 additions and 9 deletions

18
main.py
View File

@ -44,11 +44,17 @@ def home():
@app.route("/statusUpdate", methods=["POST", "GET"]) @app.route("/statusUpdate", methods=["POST", "GET"])
def statusUpdate(): def statusUpdate():
if people and request.method == "POST": if people and request.method == "POST":
index = people.index(Person(request.form["name"])) if request.form.has_key("index"):
print(index) index = int(request.form["index"])
people[index].status += 1 people[index].status += 1
if people[index].status == 3: if people[index].status == 3:
people.remove(people[index]) people.remove(people[index])
if request.form.has_key("name"):
index = people.index(Person(request.form["name"]))
print(index)
people[index].status += 1
if people[index].status == 3:
people.remove(people[index])
return redirect("/") return redirect("/")
@ -56,7 +62,7 @@ def statusUpdate():
def addPerson(): def addPerson():
if request.method == "POST": if request.method == "POST":
result = request.form result = request.form
if result["name"]: if result.has_key("name"):
newPerson = Person(result["name"], result["remark"]) newPerson = Person(result["name"], result["remark"])
if newPerson not in people: if newPerson not in people:
people.append(newPerson) people.append(newPerson)

View File

@ -21,8 +21,8 @@
</form> </form>
<form action="/statusUpdate" method="POST"> <form action="/statusUpdate" method="POST">
<p>Up te daten persoon <input type="text" name="name"></p> <input type="hidden" name="index" value="0">
<p><input type="submit" value="Updaten"></p> <p><input type="submit" value="Update First Person"></p>
</form> </form>
<h2>Zie hieronder de lijst van personen die een pannenkoek willen</h2> <h2>Zie hieronder de lijst van personen die een pannenkoek willen</h2>
@ -37,7 +37,12 @@
<table> <table>
{% for person in people[1:] %} {% for person in people[1:] %}
<tr> <tr>
<td><button>Update</button></td> <td>
<form action="/statusUpdate" method="POST">
<input type="hidden" name="name" value="{{ person.getName() }}">
<input type="submit" value="Update">
</form>
</td>
<th>{{ person.getName() + person.getRemark() + ": " }}</th> <th>{{ person.getName() + person.getRemark() + ": " }}</th>
<td>{{ "Huidige status: " + person.getStatus() }}</td> <td>{{ "Huidige status: " + person.getStatus() }}</td>
</tr> </tr>