switched to bootstrap

This commit is contained in:
joachim lusiardi
2015-03-05 08:02:57 +01:00
parent 927abf425e
commit a8b6789295
5 changed files with 109 additions and 526 deletions

View File

@@ -1,6 +1,7 @@
{% extends "layout.html" %}
{% block navigation %}
<li><a href='{{ url_for('getPitStops') }}' class="active">Home</a></li>
<li><a href='{{ url_for('createPitStopForm') }}'>Create Pitstop</a></li>
{% endblock %}
@@ -10,6 +11,9 @@
<th>
Date
</th>
<th>
Day
</th>
<th>
Odometer
</th>
@@ -28,16 +32,19 @@
<td>
{{pitstop.date}}
</td>
<td class='right-aligned'>
<td>
{% if pitstop.days %}{{pitstop.days}}{% else %} --{% endif %} days
</td>
<td>
{{pitstop.odometer}} km
</td>
<td class='right-aligned'>
<td>
{% if pitstop.distance %}{{pitstop.distance}}{% else %} --{% endif %} km
</td>
<td class='right-aligned'>
<td>
{{pitstop.litres}} l
</td>
<td class='right-aligned'>
<td>
{% if pitstop.average %}{{pitstop.average}}{% else %} --{% endif %} l/100km
</td>
</tr>