{% extends 'layouts/master.html' %} {% set active_page = "buscador" %} {% block title %}Buscador{% endblock %} {% block body %}

Buscador

{{ form.csrf_token }} {% for input in form %} {% if input.type != 'CSRFTokenField' %}
{# Label #} {{ input.label }} {# Input #} {{ input(class="form-control") }} {# Errors #} {% if input.errors %}
{% for error in input.errors %} {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% if results %} {% for item in results %} {% endfor %}
{{ item.title }} {{ item.title }} {{ item.price }}
{% endif %} {% endblock %}