developer/template/default/admin/admin_root_virtualhosts_list.tpl
2016-06-05 11:27:10 +02:00

45 lines
2.9 KiB
Smarty

<div class="row-fluid">
<div class="span12">
<ul class="breadcrumb">
<li><a href="admin.php">Home</a> <span class="divider">/</span></li>
<li><?php echo $gsprache->hostsystem;?> <span class="divider">/</span></li>
<li class="active"><?php echo $gsprache->overview;?></li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<?php echo $gsprache->hostsystem;?> <a href="admin.php?w=vh&amp;d=ad"><span class="btn btn-primary btn-mini"><i class="icon-white icon-plus-sign"></i></span></a>
</div>
</div>
<hr>
<div class="row-fluid">
<div class="span11">
<table class="table table-bordered table-hover table-striped footable">
<thead>
<tr>
<th data-class="expand"><a href="admin.php?w=vh&amp;d=md&amp;a=<?php if(!isset($amount)) echo 20; else echo $amount; ?>&p=<?php echo $start;?>&amp;o=<?php if ($o=='ap') { echo 'dp'; } else { echo 'ap'; } ?>"><?php echo $sprache->ip;?></a></th>
<th data-hide="phone,tablet"><a href="admin.php?w=vh&amp;d=md&amp;a=<?php if(!isset($amount)) echo 20; else echo $amount; ?>&p=<?php echo $start;?>&amp;o=<?php if ($o=='ai') { echo 'di'; } else { echo 'ai'; } ?>">ID</a></th>
<th data-hide="phone,tablet"><a href="admin.php?w=vh&amp;d=md&amp;a=<?php if(!isset($amount)) echo 20; else echo $amount; ?>&p=<?php echo $start;?>&amp;o=<?php if ($o=='as') { echo 'ds'; } else { echo 'as'; } ?>"><?php echo $gsprache->status;?></a></th>
<th data-hide="phone,tablet"><a href="admin.php?w=vh&amp;d=md&amp;a=<?php if(!isset($amount)) echo 20; else echo $amount; ?>&p=<?php echo $start;?>&amp;o=<?php if ($o=='ae') { echo 'de'; } else { echo 'ae'; } ?>"><?php echo $sprache->description;?></a></th>
<th data-hide="phone,tablet"><?php echo $gsprache->virtual;?></th>
<th><?php echo $gsprache->del;?></th>
<th><?php echo $gsprache->mod;?></th>
</tr>
</thead>
<tbody>
<?php foreach ($table as $table_row) { ?>
<tr>
<td><?php echo $table_row['ip'];?></td>
<td><?php echo $table_row['id'];?></td>
<td><i class="<?php if($table_row['active']=='Y') echo 'icon-ok'; else echo 'icon-ban-circle';?>"></i></td>
<td><?php echo $table_row['description'];?></td>
<td><?php echo $table_row['installedserver'];?></td>
<td><a href="admin.php?w=vh&amp;d=dl&amp;id=<?php echo $table_row['id'];?>" ><span class="btn btn-mini btn-danger"><i class="fa fa-trash-o"></i></span></a></td>
<td><a href="admin.php?w=vh&amp;d=md&amp;id=<?php echo $table_row['id'];?>" ><span class="btn btn-mini btn-primary"><i class="icon-white icon-edit"></i></span></a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>