Modificacion de clientes form, CBV

This commit is contained in:
fjrodriguez
2022-12-01 11:11:48 -06:00
parent 6e3e3e2688
commit d7f49ccf25
7 changed files with 96 additions and 4 deletions

View File

@@ -32,7 +32,9 @@
<tbody>
{% for obj in clientes %}
<tr class="">
<td>{{obj.RFC}}</td>
<td>
<a href="{% url 'update_cliente' obj.pk %}">{{obj.RFC}}</a>
</td>
<td>{{obj.Nombre}}</td>
<td>{{obj.timbres_mes_count}}</td>
<td>
@@ -51,6 +53,7 @@
table_rfcc.addEventListener('click',(event)=>{
document.getElementById('rfcc').checked= table_rfcc.checked? true:false;
})
add
</script>