File: /var/www/gestor-horarios.bradford/app/views/reportes/periodos_view.php
<div class="contenido_view row">
<div class="col-md-12">
<div class="box box-success">
<?php echo form_open('', 'id="form_asignar"') ?>
<div class="box-header">Periodos</div>
<div class="box-body">
<table class="table table_sort">
<thead>
<th>#</th>
<th>Mes/Año</th>
<th>Cant. Movimientos</th>
</thead>
<?php foreach ($periodos as $key => $value): ?>
<tr>
<td><?php echo $key + 1 ?></td>
<td><?php echo $value->fecha ?></td>
<td><?php echo $value->movimientos ?></td>
<td><a class="btn-primary btn-sm" href="<?php echo base_url('dashboard/reportes/periodos/'.$value->fecha.'/consolidados') ?>">Ver detalle</a></td>
</tr>
<?php endforeach ?>
</table>
</div>
<div class="box-footer clearfix">
<!--<a href="<?php echo base_url('report/download_report/ranking_mejores/ranking_mejores/'.$filtro_evaluar) ?>" type="button" class="btn btn-primary pull-right">Descargar Excel</a>-->
</div>
<?php echo form_close() ?>
</div>
</div>
</div>
<script>
</script>