mirror of
https://github.com/easy-wi/developer.git
synced 2025-02-20 11:23:28 +08:00
39 lines
1.4 KiB
Smarty
39 lines
1.4 KiB
Smarty
<section class="content-header">
|
|
<h1><?php echo $gsprache->virtual;?></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="<?php echo $targetFile;?>"><i class="fa fa-home"></i> Home</a></li>
|
|
<li><?php echo $gsprache->virtual;?></li>
|
|
<li class="active"><?php echo $gsprache->overview;?></li>
|
|
</ol>
|
|
</section>
|
|
|
|
|
|
<section class="content">
|
|
|
|
<div class="box box-primary">
|
|
<div class="box-body table-responsive no-padding">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th data-class="expand"><?php echo $sprache->ip;?></th>
|
|
<th data-hide="phone,tablet">ID</th>
|
|
<th data-hide="phone"><?php echo $gsprache->status;?></th>
|
|
<th data-hide="phone"><?php echo $gsprache->jobPending;?></th>
|
|
<th><?php echo $sprache->rescue.' / '.$sprache->reinstall;?></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 if($table_row['active']=='C') echo 'fa fa-warning'; else echo 'fa-ban';?>"></i></td>
|
|
<td><?php echo $table_row['jobPending'];?></td>
|
|
<td><a href="userpanel.php?w=vm&d=ri&id=<?php echo $table_row['id'];?>"><span class="btn btn-sm btn-primary"><i class="fa fa-refresh"></i></span></a></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section> |