rollerverbrauch/app/templates/createVehicleForm.html

20 lines
584 B
HTML
Raw Normal View History

2016-04-23 17:11:43 +02:00
{% extends "layout.html" %}
{% block body %}
2016-05-22 11:47:46 +02:00
<div class="col-md-2" ></div>
<div class="col-md-8">
<div class="panel panel-default">
<div class="panel-body">
<h3>Create vehicle</h3>
<form class='form-horizontal' method="POST">
{{ form.hidden_tag() }}
{{ render_field_with_errors(form.name) }}
2016-06-28 23:33:24 +02:00
{{ render_field_with_errors(form.consumables) }}
2016-05-22 11:47:46 +02:00
{{ render_field_with_errors(form.submit) }}
</form>
</div>
</div>
</div>
<div class="col-md-2" ></div>
2016-04-23 17:11:43 +02:00
{% endblock %}