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.
 
 
 
 
 

22 lines
540 B

{% extends 'base.html' %}
{% block content %}
<div class="container-xl">
<h2>Resultado de la búsqueda para "{{ query }}"</h2>
{% if vehiculos %}
<ul>
{% for vehiculo in vehiculos %}
<li>
<a href="{{ url_for('paginas.vehiculo', vehiculo_id=vehiculo.id) }}">{{ vehiculo.matricula }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>No encontré vehículos que coincidan con tu criterio.</p>
{% endif %}
<a href="{{ url_for('paginas.index') }}">Volver al inicio</a>
</div>
{% endblock %}