|
|
@ -33,15 +33,15 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="right-pane">
|
|
|
|
<div class="right-pane">
|
|
|
|
<div class="meal-list">
|
|
|
|
<div class="meal-list">
|
|
|
|
<h2>{{meals[0].meal_date}}</h2>
|
|
|
|
<h2>{{meals[0].meal_friendly_date}}</h2>
|
|
|
|
{% for meal in meals %}
|
|
|
|
{% for meal in meals %}
|
|
|
|
{% if loop.index != 1 and (meal.meal_date != meals[loop.index - 2].meal_date) %}
|
|
|
|
{% if loop.index != 1 and (meal.meal_friendly_date != meals[loop.index - 2].meal_friendly_date) %}
|
|
|
|
<h2>{{meal.meal_date}}</h2>
|
|
|
|
<h2>{{meal.meal_friendly_date}}</h2>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
<div class="flex-card" onclick="location.href='/meal/{{meal.id}}';" style="cursor: pointer; width: 60%; justify-content: space-between;">
|
|
|
|
<div class="flex-card" onclick="location.href='/meal/{{meal.id}}';" style="cursor: pointer; width: 60%; justify-content: space-between;">
|
|
|
|
<span><b>{{meal.meal_time}}</b></span>
|
|
|
|
<span><b>{{meal.meal_time}}</b></span>
|
|
|
|
<p style="text-align: left;">{% if meal.kuk != "" %}<img class="flex-small-thumb" src="{{url_for('static', filename=meal.kuk + '.png')}}" title="{{meal.kuk}}" align="middle" style="margin: " /> <b>WILL</b>{% else %}<img class="flex-small-thumb" src="{{url_for('static', filename=meal.candidate + '.png')}}" title="{{meal.kuk}}" align="middle" style="margin: " /> <b>SHOULD</b>{% endif%} cook for <br>{% for e in meal.eaters %}<img class="flex-small-thumb" src="{{url_for('static', filename=e + '.png')}}" title="{{e}}" align="middle"/> {% endfor %}</p>
|
|
|
|
<p style="text-align: left;">{% if meal.kuk != "" %}<img class="flex-small-thumb" src="{{url_for('static', filename=meal.kuk + '.png')}}" title="{{meal.kuk}}" align="middle" style="margin: " /> <b>WILL</b>{% else %}<img class="flex-small-thumb" src="{{url_for('static', filename=meal.candidate + '.png')}}" title="{{meal.kuk}}" align="middle" style="margin: " /> <b>SHOULD</b>{% endif%} cook for <br>{% for e in meal.eaters %}<img class="flex-small-thumb" src="{{url_for('static', filename=e + '.png')}}" title="{{e}}" align="middle"/> {% endfor %}</p>
|
|
|
|
<span>{% if meal.selection_deadline != 'Deadline passed' %}Confirmed in {% endif %}{{meal.selection_deadline}}</span>
|
|
|
|
<span>{% if meal.friendly_selection_deadline != '' %}Confirmed in {{meal.friendly_selection_deadline}}{% else %}Confirmed.{% endif %}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor%}
|
|
|
|
{% endfor%}
|
|
|
|
<h2> </h2>
|
|
|
|
<h2> </h2>
|
|
|
|