update happy hour layout

This commit is contained in:
Götz 2017-10-16 15:51:58 +02:00
parent 67f9f4ed83
commit abdf5e91f6
3 changed files with 24 additions and 36 deletions

View File

@ -26,10 +26,10 @@
</div>
{% block test %}
<div class="text-center bg-warning pb-2">
<h4>Hinweis: Diese Seite dient <strong>nur</strong> zu Testzwecken.
<div class="text-center bg-warning pb-2" style="font-size: 12px !important;">
<p>Hinweis: Diese Seite dient <strong>nur</strong> zu Testzwecken.
Wir garantieren weder die Vollständigkeit, noch
die Korrektheit der dargestellten Daten.</h4>
die Korrektheit der dargestellten Daten.</p>
</div>
{% endblock %}

View File

@ -17,26 +17,20 @@
<div class="row">
<div class="col p-2">
<div class="p-3 border border-dark rounded bg-light text-dark">
<h2>Happy Hours Guide von Feki.de</h2>
<h2>Happy Hour Guide von Feki.de</h2>
{% if happy_hours %}
<table class="table">
<thead class="thead-inverse">
<tr>
<th>Location</th>
<th>Time</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<div class="row">
<div class="col-4">Location</div>
<div class="col-4">Time</div>
<div class="col-4">Description</div>
{% for happy_hour in happy_hours %}
<tr>
<td>{{ happy_hour.location }}</td>
<td>{{ happy_hour.starttime.strftime('%H:%M') }} - {{ happy_hour.endtime.strftime('%H:%M') }}</td>
<td>{{ happy_hour.description }}</td>
</tr>
<div class="row">
<div class="col-4">{{ happy_hour.location }}</div>
<div class="col-4">{{ happy_hour.starttime.strftime('%H:%M') }} - {{ happy_hour.endtime.strftime('%H:%M') }}</div>
<div class="col-4">{{ happy_hour.description }}</div>
</div>
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<p>Leider gibt es heute keine Happy Hours :(</p>
{% endif %}

View File

@ -19,24 +19,18 @@
<div class="p-3 border border-dark rounded bg-light text-dark">
<h2>Happy Hour Guide von Feki.de</h2>
{% if happy_hours %}
<table class="table">
<thead class="thead-inverse">
<tr>
<th>Location</th>
<th>Time</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<div class="row">
<div class="col-4">Location</div>
<div class="col-4">Time</div>
<div class="col-4">Description</div>
{% for happy_hour in happy_hours %}
<tr>
<td>{{ happy_hour.location }}</td>
<td>{{ happy_hour.time }}</td>
<td>{{ happy_hour.description }}</td>
</tr>
<div class="row">
<div class="col-4">{{ happy_hour.location }}</div>
<div class="col-4">{{ happy_hour.starttime.strftime('%H:%M') }} - {{ happy_hour.endtime.strftime('%H:%M') }}</div>
<div class="col-4">{{ happy_hour.description }}</div>
</div>
{% endfor %}
</tbody>
</table>
</div>
{% else %}
<p>Leider gibt es heute keine Happy Hours :(</p>
{% endif %}