</a>
                            </th>
                            <th><?php 
echo $this->lang->query('th.name');
?>
</th>
                            <th><?php 
echo $this->lang->query('th.email');
?>
</th>
                            <th style="width:15%">
                                <a href="<?php 
echo $this->url->getBaseUri();
?>
admin/user?orderby=status&ordertype=<?php 
if (Phalcon\Text::lower($formData['orderType']) == 'desc') {
    ?>
asc<?php 
} else {
    ?>
desc<?php 
}
if ($formData['conditions']['keyword'] != '') {
    ?>
&keyword=<?php 
    echo $formData['conditions']['keyword'];
}
?>
">
                                    <?php 
echo $this->lang->query('th.status');
<div class="row">
	<div class="col-md-3">
		<div class="list-group">
			<?php 
$options = array('dashboard' => 'Dashboard', 'products' => 'Products', 'categories' => 'Categories');
?>
			<?php 
foreach ($options as $controller => $label) {
    ?>
				<?php 
    if (Phalcon\Text::lower($this->dispatcher->getControllerName()) == $controller) {
        ?>
					<?php 
        echo $this->tag->linkTo(array('admin/' . $controller, $label, 'class' => 'list-group-item active'));
        ?>
				<?php 
    } else {
        ?>
					<?php 
        echo $this->tag->linkTo(array('admin/' . $controller, $label, 'class' => 'list-group-item'));
        ?>
				<?php 
    }
    ?>
			<?php 
}
?>
		</div>
	</div>
	<div class="col-md-9">
		<?php