Disable edit of Centros Costos

This commit is contained in:
2024-01-10 20:47:39 -03:00
parent dc840a7bff
commit c4f486d3fa

View File

@ -5,12 +5,12 @@
<h1 class="ui header">
Centros de Costos
</h1>
<div class="ui top attached right aligned basic segment">
{{--<div class="ui top attached right aligned basic segment">
<button class="ui tiny green icon button" id="add_button">
Agregar
<i class="plus icon"></i>
</button>
</div>
</div>--}}
<table class="ui table" id="centros_costos">
<thead>
<tr>
@ -20,8 +20,8 @@
<th>Cuenta Contable</th>
<th>Centro de Costo</th>
<th>Descripción</th>
<th>
</th>
{{--<th>
</th>--}}
</tr>
</thead>
<tbody>
@ -33,7 +33,7 @@
<td>{{$centroCosto->cuentaContable}}</td>
<td>{{$centroCosto->id}}</td>
<td>{{$centroCosto->descripcion}}</td>
<td>
{{--<td>
<div class="ui mini buttons">
<button class="ui icon button edit_button" data-id="{{$centroCosto->id}}">
<i class="edit icon"></i>
@ -42,7 +42,7 @@
<i class="remove icon"></i>
</button>
</div>
</td>
</td>--}}
</tr>
@endforeach
</tbody>