2017-08-06 00:38:21 +02:00
|
|
|
{% extends 'layouts/master.html' %}
|
|
|
|
{% set active_page = "programadas" %}
|
|
|
|
{% block title %}Programadas{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<h1>Programadas</h1>
|
2017-08-07 19:54:39 +02:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">Titulo</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for item in programado_all %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ item.title }}</td>
|
|
|
|
<td>
|
|
|
|
<form action="{{ url_for('programadas_borrar') }}" method="post">
|
|
|
|
<input type="hidden" name="id" value="{{ item.id }}">
|
2017-08-27 12:51:01 +02:00
|
|
|
<input type="submit" class="btn btn-danger" value="Borrar">
|
2017-08-07 19:54:39 +02:00
|
|
|
</form>
|
2017-08-27 12:51:01 +02:00
|
|
|
</td>
|
2017-08-07 19:54:39 +02:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-08-06 00:38:21 +02:00
|
|
|
{% endblock %}
|