Add second part in README

This commit is contained in:
Andros Fenollosa
2017-08-07 19:54:39 +02:00
parent 39fb19db94
commit ce2097e39a
8 changed files with 741 additions and 6 deletions

View File

@ -3,4 +3,28 @@
{% block title %}Programadas{% endblock %}
{% block body %}
<h1>Programadas</h1>
<table class="table">
<thead>
<tr>
<th scope="col">Imagen</th>
<th scope="col">Titulo</th>
<th scope="col">Precio</th>
<th></th>
</tr>
</thead>
<tbody>
{% for item in programado_all %}
<tr>
<td><img src="{{ item.picture_URL }}" alt="{{ item.title }}"></td>
<td>{{ item.title }}</td>
<td>{{ item.price }}</td>
<td>
<form action="{{ url_for('programadas_borrar') }}" method="post">
<input type="hidden" name="id" value="{{ item.id }}">
<input type="submit" class="btn btn-danger" value="-">
</form>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}