filter 2 page remove from filter page
This commit is contained in:
@@ -20,17 +20,27 @@ Timbres disponibles Comercio Digital: {{saldo.saldo}}
|
||||
</th>
|
||||
<th>Nombre</th>
|
||||
<th>Totales Mes {{fecha|date:"F"}}</th>
|
||||
<th>Estado</th>
|
||||
<th scope="col">actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for obj in lista %}
|
||||
<tr class="">
|
||||
<tr class="{% if not obj.Activo %}table-danger{% endif %}">
|
||||
<td>
|
||||
<a href="{% url 'update_cliente' obj.pk %}">{{obj.RFC}}</a>
|
||||
</td>
|
||||
<td>{{obj.Nombre}}</td>
|
||||
<td>{{obj.Nombre}} </td>
|
||||
<td>{{obj.timbres_mes_count}}</td>
|
||||
|
||||
<td>
|
||||
{% if obj.Activo %}
|
||||
Activo
|
||||
{% else %}
|
||||
Inactivo
|
||||
{% endif %}
|
||||
</td>
|
||||
|
||||
<td>
|
||||
{% if request.user.is_staff %}
|
||||
<a href="{% url 'timbres_cliente' obj.RFC %}" class="btn btn-info">Ver Timbres</a>
|
||||
|
||||
Reference in New Issue
Block a user