rollerverbrauch/app/templates/deleteVehicleForm.html

19 lines
503 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">
2016-05-24 06:49:39 +02:00
<h3>Delete vehicle '{{vehicle.name}}'?</h3>
2016-05-22 11:47:46 +02:00
<form class='form-horizontal' method="POST">
{{ form.hidden_tag() }}
2021-06-17 18:28:19 +02:00
{{ render_field_with_errors(form.submit, include_cancel=True) }}
2016-04-23 17:11:43 +02:00
2016-05-22 11:47:46 +02:00
</form>
</div>
</div>
</div>
<div class="col-md-2" ></div>
2016-04-23 17:11:43 +02:00
{% endblock %}