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>
|
2017-08-27 12:51:01 +02:00
|
|
|
{% if results %}
|
|
|
|
<form action="{{ url_for('programadas_nuevo') }}" method="post">
|
|
|
|
<input type="hidden" name="title" value="{{ form.name.data }}">
|
|
|
|
<input type="submit" class="btn btn-success" value="Programar">
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
2017-08-01 09:22:15 +02:00
|
|
|
</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>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
2017-08-01 09:22:15 +02:00
|
|
|
{% endblock %}
|