rollerverbrauch/app/templates/newPitStopForm.html

15 lines
362 B
HTML
Raw Normal View History

2015-03-06 21:58:53 +01:00
{% extends "layout.html" %}
{% block body %}
2016-04-17 12:50:31 +02:00
<form class='form-horizontal' method="POST">
{{ form.hidden_tag() }}
2016-04-19 06:47:10 +02:00
{{ render_field_with_errors(form.vehicle) }}
{{ render_field_with_errors(form.date) }}
{{ render_field_with_errors(form.odometer) }}
{{ render_field_with_errors(form.litres) }}
2016-04-17 12:50:31 +02:00
<input type="submit" value="Go">
2015-03-06 21:58:53 +01:00
</form>
2015-03-16 22:06:59 +01:00
2015-03-06 21:58:53 +01:00
2016-04-17 12:50:31 +02:00
{% endblock %}