adds create and delete vehicle

This commit is contained in:
2016-04-23 17:11:43 +02:00
parent d19b0a5858
commit 267c59cbb3
5 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
{% extends "layout.html" %}
{% block body %}
<h1>Delete vehicle "{{vehicle.name}}"</h1>
<form class='form-horizontal' method="POST">
{{ form.hidden_tag() }}
<input type="submit" value="Go">
</form>
{% endblock %}