Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/02/2015, 11:19
elcaiaimar
 
Fecha de Ingreso: septiembre-2014
Mensajes: 40
Antigüedad: 10 años, 1 mes
Puntos: 0
Pregunta Respuesta: JsonResponse and Ajax function.

Se refiere a este botón de eliminar:

{% if results %}
<table class="table table-hover" id="tabla_productos">
<thead>
<tr>
<th>Codpozo</th>
</tr>
</thead>
{% for p in results %}
<tbody>
<tr id="tr{{p.id}}">
<td>{{ p.codpozo }}</td>

{% if user.is_authenticated and user.is_staff %}

<td><a href="#myModal" role="button" class="btn btn-danger delete" data-toggle="modal" id="{{p.id}}" data-name="{{p.codpozo}}">Eliminar</a></td>
{% endif %}
</tr>
</tbody>
{% endfor %}
</table>
{% else %}
<h2>No existen pozos</h2>
{% endif %}