Compare commits

...

9 Commits

4 changed files with 40 additions and 10 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
.idea/ .idea/
*.pyc
venv/

19
main.py
View File

@ -44,11 +44,18 @@ 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"])) result = request.form
print(index) if "index" in result:
people[index].status += 1 index = int(request.form["index"])
if people[index].status == 3: people[index].status += 1
people.remove(people[index]) if people[index].status == 3:
people.remove(people[index])
if "name" in result:
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 +63,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 "name" in result:
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)

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
flask

View File

@ -1,6 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<style>
body {
background-color: #303030;
color: white;
}
</style>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Pannenkoekenwachtrij</title> <title>Pannenkoekenwachtrij</title>
</head> </head>
@ -15,14 +21,28 @@
</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>
<h3>Volgende Persoon:</h3>
{% if people %}
<tr>
<th>{{ people[0].getName() + people[0].getRemark() + ": " }}</th>
<td>{{ "Huidige status: " + people[0].getStatus() }}</td>
</tr>
{% endif %}
<h3>Andere Personen:</h3>
<table> <table>
{% for person in people %} {% for person in people[1:] %}
<tr> <tr>
<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>
@ -30,4 +50,4 @@
</table> </table>
</header> </header>
</body> </body>
</html> </html>