Update REAME with new save system
This commit is contained in:
@ -6,23 +6,20 @@
|
||||
<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="-">
|
||||
<input type="submit" class="btn btn-danger" value="Borrar">
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
Reference in New Issue
Block a user