You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends "layout.html" %}
|
|
|
{% block content %}
|
|
|
<h1>Add Vehicle</h1>
|
|
|
<form method="POST">
|
|
|
{{ form.hidden_tag() }}
|
|
|
<div class="form-group">
|
|
|
{{ form.license_plate.label }} {{ form.license_plate(class_="form-control") }}
|
|
|
</div>
|
|
|
<div class="form-group">
|
|
|
{{ form.model.label }} {{ form.model(class_="form-control") }}
|
|
|
</div>
|
|
|
{{ form.submit(class_="btn btn-primary") }}
|
|
|
</form>
|
|
|
{% endblock %}
|