rollerverbrauch/app/templates/editVehicleForm.html

21 lines
635 B
HTML
Raw Normal View History

2016-04-23 11:20:39 +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>Edit vehicle '{{vehicle.name}}'</h3>
2016-05-22 11:47:46 +02:00
<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) }}
2021-06-20 08:43:46 +02:00
{{ render_field_with_errors(form.is_active) }}
2016-05-22 11:47:46 +02:00
{{ render_field_with_errors(form.submit) }}
</form>
</div>
</div>
</div>
2016-04-23 11:20:39 +02:00
{% endblock %}