<table id="tbl-DesarrolloSoftware-PruebasUnitarias" class="table table-bordered table-hover table-responsive">
    <thead>
        <tr>
            <th width="1%" ><input type="checkbox" class="check-DesarrolloSoftware-PruebasUnitarias" id="chk-TodosDesarrolloSoftware-PruebasUnitarias" ></th>
            <th width="10%" >Código</th>
            <th width="40%" >Titulo</th>
            <th width="20%" >Descripción</th>
        </tr>
    </thead>
    <tbody> 
        {% if PruebasUnitarias %}
        {% for PruebaUnitaria in PruebasUnitarias %}
        <tr>
            <td>
                <input type="checkbox" class="checkTable check-DesarrolloSoftware-PruebasUnitarias" name="check-PruebasUnitarias[]" 
                       value="{{ PruebaUnitaria.pruebaUnitariaID }}" data-titulo="{{ PruebaUnitaria.pruebaUnitariaTITULO }}" />
            </td>
           <td>{{ PruebaUnitaria.pruebaUnitariaCODIGO }}</td>
            <td>{{ PruebaUnitaria.pruebaUnitariaTITULO }}</td>
            <td class="titulo-flotante" title="{{ PruebaUnitaria.pruebaUnitariaDESCRIPCION|striptags }}" >
                {{ PruebaUnitaria.pruebaUnitariaDESCRIPCION|striptags[0:21] }}...
            </td>
        </tr>
        {% endfor %}
        {% endif %}
    </tbody>
</table>
<script type="text/javascript" >
    $(document).ready(function () {
        checkBoxSICAM('.check-DesarrolloSoftware-PruebasUnitarias');
        activarSeleccionarTodos("chk-TodosDesarrolloSoftware-PruebasUnitarias", "check-DesarrolloSoftware-PruebasUnitarias");
    });
    crearTablaScroll("tbl-DesarrolloSoftware-PruebasUnitarias", "320");
</script>    

