gest366/modules/pannello/pan_ultimi_u.php

31 lines
1.3 KiB
PHP
Raw Normal View History

2021-02-24 20:40:04 +00:00
<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></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>