flask-wallapop-watcher/templates/items/buscador.html

46 lines
1.6 KiB
HTML
Raw Normal View History

2017-08-01 09:22:15 +02:00
{% extends 'layouts/master.html' %}
2017-08-06 00:38:21 +02:00
{% set active_page = "buscador" %}
2017-08-01 09:22:15 +02:00
{% block title %}Buscador{% endblock %}
{% block body %}
<h1>Buscador</h1>
<div class="row">
<div class="col-xs-12">
2017-08-06 00:38:21 +02:00
<form method="post">
{{ form.csrf_token }}
{% for input in form %}
{% if input.type != 'CSRFTokenField' %}
<div class="form-group">
{# Label #}
{{ input.label }}
{# Input #}
{{ input(class="form-control") }}
{# Errors #}
{% if input.errors %}
<div class="has-error">
{% for error in input.errors %}
<label class="help-block">
{{ error }}
</label>
{% endfor %}
</div>
{% endif %}
</div>
{% endif %}
{% endfor %}
<input type="submit" class="btn btn-primary" value="Buscar">
2017-08-01 09:22:15 +02:00
</form>
</div>
</div>
2017-08-06 00:38:21 +02:00
{% if results %}
<table class="table">
{% for item in results %}
<tr>
<td><img class="img-responsive" src="{{ item.pictureURL }}" alt="{{ item.title }}"></td>
<td>{{ item.title }}</td>
<td>{{ item.price }}</td>
<td><a href="#" class="btn btn-success">+</a></td>
</tr>
{% endfor %}
</table>
{% endif %}
2017-08-01 09:22:15 +02:00
{% endblock %}