43 lines
1.5 KiB
PHTML
43 lines
1.5 KiB
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle('后台管理');
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
||
|
?>
|
||
|
<div id="leftPanel">
|
||
|
<?= $this->partial('sys/left.phtml'); ?>
|
||
|
</div>
|
||
|
|
||
|
<div id="rightPanel">
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/online">在线数据</a>
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/heihe">黑河专题数据</a>
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/water">WATER</a>
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/westee">西部计划</a></a>
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/westee">Hiwater</a></a>
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/heihe1">黑河计划未发布数据</a>
|
||
|
<a class="btn" href="/admin/sys/recovery/ac/other">其他数据</a>
|
||
|
<table><thead><tr>
|
||
|
<th>数据标题</th>
|
||
|
<th>UUID</th>
|
||
|
<th>FTP主机</th>
|
||
|
<th>路径</th>
|
||
|
<th>大小</th>
|
||
|
<th>文件数</th>
|
||
|
</tr></thead><tbody>
|
||
|
<?php
|
||
|
if (count($this->paginator)):
|
||
|
$autoindex=0;
|
||
|
foreach ($this->paginator as $item):
|
||
|
$autoindex++;?>
|
||
|
<tr class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
|
||
|
<td><a href="/data/<?php echo $item['uuid'];?>"><?php echo $item['title'];?></a></td>
|
||
|
<td><?php echo $item['uuid'];?></td>
|
||
|
<td><?php echo $item['host'];?></td>
|
||
|
<td><?php echo $item['path'];?></td>
|
||
|
<td><?php echo $item['filesize'];?></td>
|
||
|
<td><?php echo $item['filecount'];?></td>
|
||
|
</tr>
|
||
|
<?php endforeach; endif; ?>
|
||
|
</tbody></table>
|
||
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||
|
</div>
|