Current File : /home/karenpetzb/application/modules/backoffice/views/scripts/user/guest.phtml
<div class="table-box">
<div class="col-md-12 header-single-line">
	<div class="col-md-5 header-single no-space-top"><?php echo $this->titlePage; ?></div>
	<div class="col-md-7 no-space-top"><?php echo $this->render("alert.phtml"); ?></div>
</div>
<?php echo $this->paginationControl($this->paginator, 'All', 'pagination.phtml'); ?>
<table class="display table" id="supplierTable" width="100%">
	<thead>
		<tr>
			<th>Informations</th>
			<th>Email</th>
			<th>Action</th>
		</tr> 	
	</thead>
	<tbody>
	
		<?php foreach($this->paginator as $row)  { ?>
		<tr>
			<td><?php echo $row->INFORMATION;?></td>
			<td><?php echo $row->EMAIL;?></td>
			<td><?php echo $row->ACTION;?></td>
		</tr>
		<?php } ?>
	</tbody>
</table>
<?php echo $this->paginationControl($this->paginator, 'All', 'pagination.phtml'); ?>
</div>