rollerverbrauch/app/rollerverbrauch/templates/pitstops.html

73 lines
3.5 KiB
HTML
Raw Normal View History

2016-05-24 06:49:39 +02:00
{% extends "layout.html" %}
2015-03-06 21:58:53 +01:00
{% block body %}
2016-07-04 20:19:59 +02:00
<div class="col-md-2" ></div>
<div class="col-md-8">
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
{% for vehicle in current_user.vehicles %}
<li {% if loop.first %}class="active" {%endif %}>
<a href="#v{{vehicle.id}}" id="i{{vehicle.id}}" data-toggle="tab">
{{ vehicle.name }}
</a>
</li>
{% endfor %}
</ul>
<div id="my-tab-content" class="tab-content">
{% for vehicle in current_user.vehicles %}
<div class="tab-pane {% if loop.first %}active{% endif %}" id="v{{vehicle.id}}">
<h3>{{vehicle.name}}</h3>
2016-05-24 06:49:39 +02:00
{% if vehicle.pitstops %}
2016-07-04 20:19:59 +02:00
{% for pitstop in vehicle.pitstops|reverse %}
<div class="panel panel-default">
<div class="panel-body">
<table class="table table-striped table-bordered table-condensed">
<tr>
<th>Date</th>
<td>{{pitstop.date}}</td>
2016-05-24 06:49:39 +02:00
</tr>
2016-07-04 20:19:59 +02:00
<tr>
<th>Odometer</th>
<td>{{pitstop.odometer}} km</td>
2016-05-24 06:49:39 +02:00
</tr>
2016-07-04 20:19:59 +02:00
<tr>
<th>{{ pitstop.consumable.name }}</th>
<td>{{pitstop.amount}} {{ pitstop.consumable.unit }}</td>
</tr>
<tr>
<th>Costs</th>
<td>{{pitstop.costs}} €</td>
</tr>
</table>
{% if loop.first %}
<a href="{{ url_for('edit_pit_stop_form', pid=pitstop.id) }}" class="btn btn-primary">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> edit
</a>
<a href="{{ url_for('delete_pit_stop_form', pid=pitstop.id) }}" class="btn btn-primary btn-warning ">
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> delete
</a>
2016-05-24 06:49:39 +02:00
{% endif %}
2016-07-04 20:19:59 +02:00
</div>
</div>
{% endfor %}
2016-05-24 06:49:39 +02:00
{% else %}
<div class="alert alert-warning" role="alert">
not enough data: <a href="{{ url_for('select_consumable_for_new_pitstop', vid=vehicle.id) }}">log a pitstop</a>?
2016-05-24 06:49:39 +02:00
</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>
2016-07-04 20:19:59 +02:00
<div class="col-md-2" ></div>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('#tabs').tab();
if(window.location.hash != "") {
$('a[href="' + window.location.hash + '"]').click()
}
});
2015-03-16 22:06:59 +01:00
</script>
2016-04-24 14:09:41 +02:00
{% endblock %}