Exemple #1
0
			            <div class="col-md-8 col-md-offset-2">
			              <h3 class="text-uppercase mb-20 mt-0">Our Top Volunteers</h3>
			              
			            </div>
			          </div>
			        </div>
			        <div class="section-content">
			          <div class="row multi-row-clearfix">
			          <?php 
$i = 0;
foreach ($Volunteers as $id) {
    ?>
			            <div class="col-sm-6 col-md-3 mb-sm-60 text-left sm-text-center">
			              <div class="volunteer maxwidth400">
			                <div class="thumb"><img alt="" src="<?php 
    if ($volunteer->getVolunteerInfo($id, 'image') != "") {
        echo "images/volunteers/" . $volunteer->getVolunteerInfo($id, 'image');
    } else {
        echo noimage;
    }
    ?>
" class="img-fullwidth"></div>
			                <div class="overlay">
			                  <div class="content text-center">
			                    <h4 class="author mb-0"><a href="#volunteer-modal" data-toggle="modal" data-target="#volunteer-modal" data-id="<?php 
    echo $id;
    ?>
" class="text-white"><?php 
    echo $volunteer->getVolunteerInfo($id, 'name');
    ?>
</a></h4>
                    						<th>Name</th>
                    						<th>Action</th>
                    					</tr>
                    				</thead>
                    				<tbody>
                    					<?php 
    $i = 0;
    foreach ($item_list as $item) {
        ?>
                    					<tr>
                    						<td><?php 
        echo ++$i;
        ?>
</td>
                    						<td><?php 
        echo $obj->getVolunteerInfo($item, 'name');
        ?>
</td>
                    						<td>
                    							<a href="<?php 
        echo $config->site_address;
        ?>
volunteer-admin/edit/<?php 
        echo $item;
        ?>
" class="btn btn-primary glyphicon glyphicon-edit" title="Edit" data-toggle="tooltip"></a>
                    							<a href="<?php 
        echo Comman::getController('volunteer');
        ?>
?action=delete&id=<?php 
        echo $item;