<table id="listaCotizaciones" class="table table-striped table-bordered" cellspacing="0" width="100%"style=" border-bottom: #fff;">
    <thead
        <tr>
            <th style="text-align: center;">Seleccionar</th>
            <th style="text-align: center;">Cotización N°</th>
            <th style="text-align: center;">Cliente</th>
            <th style="text-align: center;">Total</th>
        </tr>
    </thead>
    <tbody  style="text-align: center;">
    </tbody>
</table>

<script type="text/javascript">
    var total = 0;
    var tablaTodasCotizaciones = $('#listaCotizaciones').DataTable();
        {% set indice = 0 %}
        {% for Cotizaciones in Cotizaciones %}
        tablaTodasCotizaciones.row.add( [
                "<input type='checkbox' id='checkb{{ Cotizaciones.cotizacionID }}' name='cotizaciones[]' value='{{ Cotizaciones.cotizacionID }}' class='check checkCotizaciones'>",
                "{{ Cotizaciones.cotizacionCONSECUTIVO }}",
                "{{ Cotizaciones.personaNOMBRES }} {{ Cotizaciones.personaAPELLIDOS }}",
                {{ Totales[indice]}}
                ] ).draw( false );
        {% set indice = indice + 1 %}
        {% endfor %}
    
    $(document).ready( function(){
       checkBoxSICAM('.checkCotizaciones'); 
    });  
        
        
</script>
