You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.6 KiB
58 lines
2.6 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Meal List - KUKAPP</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
<script src="https://use.fontawesome.com/2fef7be393.js"></script>
|
|
<style type="text/css">
|
|
html {
|
|
background-image: url({{url_for('static', filename='burger.jpg')}});
|
|
background-position: left top;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% auto;
|
|
background-color: #aeaeac;
|
|
background-attachment: fixed;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="leaderboard">
|
|
<h1 style="text-align: center">Leaderboard</h1>
|
|
<div class="leaderboard-contiainer">
|
|
{% for person in leaderboard %}
|
|
<div class="lb-entry">
|
|
<img src="{{url_for('static', filename=person.name + '.png')}}">
|
|
<span class="name">{{ person.name }}</span>
|
|
<span class="score">{{ person.score }}</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="right-pane">
|
|
<div class="meal-list">
|
|
<h2>{{meals[0].meal_date}}</h2>
|
|
{% for meal in meals %}
|
|
{% if loop.index != 1 and (meal.meal_date != meals[loop.index - 2].meal_date) %}
|
|
<h2>{{meal.meal_date}}</h2>
|
|
{% endif %}
|
|
<div class="flex-card" onclick="location.href='/meal/{{meal.id}}';" style="cursor: pointer; width: 60%;">
|
|
<div class="people">
|
|
<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> 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 %}{% else %}<img class="flex-small-thumb" src="{{url_for('static', filename=meal.candidate + '.png')}}" title="{{meal.kuk}}" align="middle" style="margin: " /> <b>SHOULD</b> 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 %}{% endif %}</p>
|
|
</div>
|
|
<span>Confirmed in {{meal.selection_deadline}}</span>
|
|
</div>
|
|
{% endfor%}
|
|
</div>
|
|
<div class="user-card">
|
|
<img src="{{url_for('static', filename=current_user_name + '.png')}}">
|
|
<div class="user-info">
|
|
<span>{{current_user_name}}</span>
|
|
<div class="rect-button" onclick="location.href='/logout';" style="background-color: #EE7500;">LOGOUT</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |