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.
		
		
		
		
		
			
		
			
				
					
					
						
							63 lines
						
					
					
						
							2.8 KiB
						
					
					
				
			
		
		
	
	
							63 lines
						
					
					
						
							2.8 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%; justify-content: space-between;">
 | |
| 					<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>
 | |
| 					<span>{% if meal.selection_deadline != 'Deadline passed' %}Confirmed in {% endif %}{{meal.selection_deadline}}</span>
 | |
| 				</div>
 | |
| 			{% endfor%}
 | |
| 		</div>
 | |
| 		<div class="user-card">
 | |
| 			{% if current_user.is_authenticated %}
 | |
| 			<img src="{{url_for('static', filename=current_user.name + '.png')}}">
 | |
| 			{% endif %}
 | |
| 			<div class="user-info">
 | |
| 				{% if current_user.is_authenticated %}
 | |
| 				<span>{{current_user.name}}</span>
 | |
| 				<div class="rect-button" onclick="location.href='/logout';" style="background-color: #EE7500;">LOGOUT</div>
 | |
| 				{% else %}
 | |
| 				<div class="rect-button" onclick="location.href='/login';" style="background-color: #EE7500;">LOGIN</div>
 | |
| 				{% endif %}
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </body>
 | |
| </html> |