31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<div class="col-md-<?php echo $_SESSION['pan_dimensione'] ?>">
|
|
<div class="box box-info">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">Da Incassare questo mese</h3>
|
|
<div class="box-tools pull-right">
|
|
<button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
|
|
<button class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
|
|
</div>
|
|
</div><!-- /.box-header -->
|
|
<div class="box-body">
|
|
<div class="table-responsive">
|
|
<table class="table no-margin">
|
|
<thead>
|
|
<tr>
|
|
<th>N°</th>
|
|
<th>Documento</th>
|
|
<th>Ragione Sociale</th>
|
|
<th>Data</th>
|
|
<th class='text-right'>Totale</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
scadenze();
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|