67 lines
2.7 KiB
PHP
Executable File
67 lines
2.7 KiB
PHP
Executable File
<?php echo $header; ?>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-8">
|
|
<h1 class="page-header">
|
|
<?php echo $this->lang->line('user_header'); ?>
|
|
</h1>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<div class="container-fluid">
|
|
<form action="">
|
|
<div class="input-group searchContainer">
|
|
|
|
<input type="text" class="form-control" id="searchString" name="term">
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-default" id="searchBtn" type="submit"><span
|
|
class="fa fa-search"></span></button>
|
|
</span>
|
|
|
|
</div><!-- /input-group -->
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-12">
|
|
<ol class="breadcrumb">
|
|
<li>
|
|
<i class="fa fa-dashboard"></i>
|
|
<a href="<?php echo BASE_URL; ?>/admin"><?php echo $this->lang->line('nav_dash'); ?></a>
|
|
</li>
|
|
<li class="active">
|
|
<i class="fa fa-fw fa-user"></i>
|
|
<a href="<?php echo BASE_URL; ?>/admin/users"><?php echo $this->lang->line('user_header'); ?></a>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th> <?php echo $this->lang->line('user_username'); ?> </th>
|
|
<th> Group </th>
|
|
<th> <?php echo $this->lang->line('user_email'); ?> </th>
|
|
<th class="td-actions"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="userContainer">
|
|
<?php
|
|
foreach ($users as $u) {
|
|
echo '<tr>';
|
|
echo '<td>'.$u['userName'].'</td>';
|
|
echo '<td>'.$u['groupName'].'</td>';
|
|
echo '<td>'.$u['email'].'</td>';
|
|
echo '<td class="td-actions"><a href="'.BASE_URL.'/admin/users/edit/'.$u['userID'].'" class="btn btn-small btn-success"><i class="fa fa-pencil"> </i></a> <a data-toggle="modal" data-target="#ajaxModal" class="btn btn-danger btn-small" href="'.BASE_URL.'/admin/users/delete/'.$u['userID'].'"><i class="fa fa-remove"> </i></a></td>';
|
|
echo '</tr>';
|
|
} ?>
|
|
</tbody>
|
|
</table>
|
|
<?php echo $this->pagination->create_links(); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php echo $footer; ?>
|