Файл: upload/admin/view/template/octeam/toolset.tpl
Строк: 44
<?php echo $header; ?><?php echo $column_left; ?>
<div
id="content">
<div class="page-header">
<div class="container-fluid">
<h1><?php echo
$heading_title; ?></h1>
<ul
class="breadcrumb">
<?php foreach ($breadcrumbs as
$breadcrumb) { ?>
<li><a href="<?php echo
$breadcrumb['href']; ?>"><?php echo $breadcrumb['text'];
?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div
class="container-fluid">
<?php if ($error) { ?>
<div class="alert alert-danger"><i class="fa
fa-exclamation-circle"></i> <?php echo $error; ?>
<button type="button" class="close"
data-dismiss="alert">×</button>
</div>
<?php } ?>
<?php if ($success) { ?>
<div class="alert alert-success"><i class="fa
fa-check-circle"></i> <?php echo $success; ?>
<button type="button" class="close"
data-dismiss="alert">×</button>
</div>
<?php } ?>
<div class="panel
panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa
fa-cogs"></i> <?php echo $heading_title; ?></h3>
</div>
<div class="panel-body">
<div class="table-responsive">
<table
class="table table-bordered table-hover">
<thead>
<tr>
<td
class="text-left"><?php echo $column_name;
?></td>
<td
class="text-left"><?php echo $column_description;
?></td>
<td
class="text-center"><?php echo $column_action;
?></td>
</tr>
</thead>
<tbody>
<?php if ($tools) { ?>
<?php foreach ($tools as $tool) { ?>
<tr>
<td class="text-left"><?php echo $tool['name'];
?></td>
<td
class="text-left"><?php echo $tool['description']
?></td>
<td class="text-center">
<?php foreach ($tool['action'] as $action) { ?>
<a href="<?php echo $action['href']; ?>"
data-toggle="tooltip" title="<?php echo $action['text'];
?>" class="btn btn-primary"><i class="fa
fa-eye"></i></a>
<?php } ?>
</td>
</tr>
<?php }
?>
<?php } else { ?>
<tr>
<td class="text-center"
colspan="4"><?php echo $text_no_results; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php echo
$footer; ?>