41 lines
1.4 KiB
PHTML
41 lines
1.4 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle('后台管理');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
||
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
||
$this->breadcrumb('同步GEONETWORK元数据</a>');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
<div class="row-fluid">
|
||
<div class="span2">
|
||
<?= $this->partial('data/left.phtml'); ?>
|
||
</div>
|
||
|
||
<div class="span10">
|
||
<?php if (count($this->paginator)): ?>
|
||
<div class="datalist">
|
||
<ul class="unstyled">
|
||
<?php foreach ($this->paginator as $item): ?>
|
||
<li class="well well-small">
|
||
<h4><a href="/data/<?= $item['uuid']; ?>" class="title"><?= $item['title']; ?></a></h4>
|
||
<p>大小:<?= $item['filesize']; ?>M,创建时间:<?= date('Y-m-d',strtotime($item['ts_created'])); ?>。</p>
|
||
<?php if($item['author']) :?>
|
||
<p>数据贡献者:<?= $item['author']; ?></p>
|
||
<?php endif;?>
|
||
<p class="content"><?= $item['description']; ?></p>
|
||
<p>
|
||
操作:
|
||
<a href="/admin/data/visual/uuid/<?php echo $item['uuid'];?>">编辑可视化要素</a> |
|
||
<a href="/visual/view/uuid/<?= $item['uuid'] ?>">前台预览</a>
|
||
</p>
|
||
</li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</div>
|
||
<?php endif; ?>
|
||
<?php echo $this->paginator; ?>
|
||
</div>
|
||
</div>
|