|
|
@ -33,7 +33,7 @@
|
|
|
|
<h2>Cook</h2>
|
|
|
|
<h2>Cook</h2>
|
|
|
|
<div class="flex-card">
|
|
|
|
<div class="flex-card">
|
|
|
|
{% if meal.kuk == "" %}
|
|
|
|
{% if meal.kuk == "" %}
|
|
|
|
<img src="{{url_for('static', filename='question.png')}}">
|
|
|
|
<img src="{{url_for('static', filename='question.png')}}" class="flex-thumb">
|
|
|
|
<p>If nobody volunteers,<br><img class="flex-small-thumb" src="{{url_for('static', filename=meal.candidate + '.png')}}" title="{{meal.candidate}}" align="middle"> will cook.</p>
|
|
|
|
<p>If nobody volunteers,<br><img class="flex-small-thumb" src="{{url_for('static', filename=meal.candidate + '.png')}}" title="{{meal.candidate}}" align="middle"> will cook.</p>
|
|
|
|
<div class="rect-button" onclick="location.href='/volunteer';" style="background-color: #EE7500;">VOLUNTEER</div>
|
|
|
|
<div class="rect-button" onclick="location.href='/volunteer';" style="background-color: #EE7500;">VOLUNTEER</div>
|
|
|
|
{% else %}
|
|
|
|
{% else %}
|
|
|
@ -45,7 +45,7 @@
|
|
|
|
<h2>Eaters</h2>
|
|
|
|
<h2>Eaters</h2>
|
|
|
|
{% for eater in meal.eaters %}
|
|
|
|
{% for eater in meal.eaters %}
|
|
|
|
<div class="flex-card">
|
|
|
|
<div class="flex-card">
|
|
|
|
<img src="{{url_for('static', filename=eater + '.png')}}">
|
|
|
|
<img src="{{url_for('static', filename=eater + '.png')}}" class="flex-thumb">
|
|
|
|
<span class="username">{{ eater }}</span>
|
|
|
|
<span class="username">{{ eater }}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|