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.
 
 
 
 
 

27 lines
880 B

{% extends "layout.html" %}
{% block content %}
<h1>Add Student</h1>
<form method="POST">
{{ form.hidden_tag() }}
<div class="form-group">
{{ form.fecha.label }} {{ form.fecha(class_="form-control") }}
</div>
<div class="form-group">
{{ form.vehiculo.label }} {{ form.vehiculo(class_="form-control") }}
</div>
<div class="form-group">
{{ form.kms.label }} {{ form.kms(class_="form-control") }}
</div>
<div class="form-group">
{{ form.litros.label }} {{ form.litros(class_="form-control") }}
</div>
<div class="form-group">
{{ form.descuento.label }} {{ form.descuento(class_="form-control") }}
</div>
<div class="form-group">
{{ form.importe.label }} {{ form.importe(class_="form-control") }}
</div>
{{ form.submit(class_="btn btn-primary") }}
</form>
{% endblock %}