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