Exemplo n.º 1
0
        </a>
    </div> 
</div>

<hr />

<div class="row-fluid">
 <div class="span12">
     <table class="table table-striped table-bordered table-condensed" id="tabellaUtenti">
        <thead>
            <th>Nome</th>
            <th>Tipo</th>
            <th>Azioni</th>
        </thead>
        <?php 
foreach (Donazione::elenco('nome ASC') as $c) {
    ?>
            <tr>
                <td><?php 
    echo $c->nome;
    ?>
</td>
                <td><?php 
    echo $conf['donazioni'][$c->tipo][0];
    ?>
</td>
                <td>
                    <div class="btn-group">
                        <a  onClick="return confirm('Vuoi veramente cancellare questa donazione ?');" href="?p=admin.donazione.cancella&id=<?php 
    echo $c->id;
    ?>