mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-03-09 15:40:18 +00:00
Massive import web manager
This commit is contained in:
parent
88b8d7a818
commit
951853fd34
3 changed files with 178 additions and 0 deletions
52
code/web/www/pages/storages.php
Executable file
52
code/web/www/pages/storages.php
Executable file
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
include(dirname(__DIR__).'/pages/includes/header.php');
|
||||
|
||||
// GEN HTML LIST Dates
|
||||
$html = new API_Gen_HTML;
|
||||
|
||||
$html_sto = $html->List_STO($lastdate);
|
||||
|
||||
?>
|
||||
<div id="page-wrapper">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header">Storages</h1>
|
||||
</div>
|
||||
<div class="col-lg-12" id="List_Dates">
|
||||
|
||||
|
||||
</div>
|
||||
<!-- /.col-lg-12 -->
|
||||
</div>
|
||||
<!-- /.row -->
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="panel panel-default">
|
||||
|
||||
<!-- /.panel-heading -->
|
||||
<div class="panel-body" >
|
||||
|
||||
<table width="100%" class="display nowrap table table-striped table-bordered table-hover" id="dataTables-storages" >
|
||||
<thead class="thead-inverse">
|
||||
<tr>
|
||||
<th> </th>
|
||||
<th data-priority="1">Node</th>
|
||||
<th data-priority="1">Name</th>
|
||||
<th data-priority="1">Total</th>
|
||||
<th data-priority="1">Allocate</th>
|
||||
<th data-priority="1">Available</th>
|
||||
<th data-priority="1">Used </th>
|
||||
<th class="none">Disks</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<?php echo $html_sto; ?>
|
||||
</table>
|
||||
</div>
|
||||
<div id="result"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /#wrapper -->
|
||||
<?php
|
||||
include(dirname(__DIR__).'/pages/includes/footer.php');
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue