From 049b0e66ba1f89e882c1a4f25593164375e0cb4a Mon Sep 17 00:00:00 2001 From: Davide Bongiovanni Date: Fri, 30 Nov 2018 22:37:04 +0100 Subject: [PATCH] Correctly displaying stuff --- static/style.css | 2 +- templates/meal_list.html | 3 +-- test.py | 13 +++++++++---- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/static/style.css b/static/style.css index 5cc3a66..bf87d02 100644 --- a/static/style.css +++ b/static/style.css @@ -92,7 +92,7 @@ h2 { .flex-card p { font-size: 14px; text-align: center; - line-height: 200%; + line-height: 280%; } .rect-button span { diff --git a/templates/meal_list.html b/templates/meal_list.html index 3b4126c..7f64720 100644 --- a/templates/meal_list.html +++ b/templates/meal_list.html @@ -40,8 +40,7 @@ {% endif %}
-

Cook   

-

Eaters    {% for e in meal.eaters %} {% endfor %}

+

{% if meal.kuk != "" %}    WILL cook for
{% for e in meal.eaters %}  {% endfor %}{% else %}    SHOULD cook for
{% for e in meal.eaters %}  {% endfor %}{% endif %}

Confirmed in {{meal.selection_deadline}}
diff --git a/test.py b/test.py index 0afdca9..2356fcf 100644 --- a/test.py +++ b/test.py @@ -34,7 +34,7 @@ pawel['score'] = 10 leaderboard.append(pawel) mark = {} -mark['name'] = 'Mark' +mark['name'] = 'Marek' mark['score'] = 1 leaderboard.append(mark) @@ -50,9 +50,9 @@ leaderboard.append(wille) c_davide = {} c_davide['name'] = 'Davide' -c_davide['confirmed'] = 'yes' +c_davide['confirmed'] = 'no' cook = c_davide -eaters = ["Pawel", "Mark", "Sven"] +eaters = ["Wille", "Marek", "Sven"] # flask-login login_manager = LoginManager() @@ -62,7 +62,12 @@ login_manager.login_view = "login" @app.route("/") @login_required def index(): - return render_template('index.html', leaderboard=leaderboard, cook=cook, eaters=eaters) + date = 'Friday 23rd of November' + meals = [] + meals.append({'id':1, 'kuk':'davide', 'eaters':['marek','sven','wille'], 'flavor_text':'Pizza', 'date':'Tuesday 21st of November', 'selection_deadline':'23 hours 14 minutes', 'status':0}) + meals.append({'id':2, 'kuk':'marek', 'eaters':['davide','sven','david', 'wille'], 'flavor_text':'Grzybowa', 'date':'Friday 23rd of November', 'selection_deadline':'3 Days 23 hours', 'status':0}) + return render_template('index.html', leaderboard=leaderboard, cook=cook, eaters=eaters, date=date) + # return render_template('meal_list.html', leaderboard=leaderboard, cook=cook, eaters=eaters, meals=meals) # somewhere to login @app.route("/login", methods=["GET", "POST"])