51 lines
2.1 KiB
PHTML
51 lines
2.1 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle($this->config->title->author);
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headLink()->appendStylesheet('/css/author.css');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/author">数据作者</a>');
|
||
$this->breadcrumb('数据申请管理');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
<div class="row">
|
||
<div class="span3">
|
||
<?= $this->partial('author/navi.phtml'); ?>
|
||
</div>
|
||
<div class="span9">
|
||
<div>
|
||
<ul class="nav nav-pills">
|
||
<li class="active"><a href="/author/inauthor/ac/online">在线下载记录</a></li>
|
||
<li><a href="/author/inauthor/ac/offline">离线申请记录</a></li>
|
||
<li><a href="/author/inauthor/ac/datalist">按数据查看</a></li>
|
||
</ul>
|
||
</div>
|
||
<p>请输入元数据标题关键字进行搜索</p>
|
||
<div class="input-append">
|
||
<form id="datasearch" class="search_form" action="/author/inauthor/ac/searchonline">
|
||
<input type="text" id="keyword" name="q" value="<?php if(!empty($this->q)) echo $this->q; ?>" />
|
||
<button type="submit" class="btn" id="search_btn">搜索</button>
|
||
</form>
|
||
</div>
|
||
<div>
|
||
<?php
|
||
if (count($this->paginator)):
|
||
echo '<ul class="unstyled">';
|
||
$autoindex=0;
|
||
foreach ($this->paginator as $item):
|
||
$autoindex++;?>
|
||
<li class="well">
|
||
<h4><a href="/data/<?php echo $item['uuid'];?>" target="_blank"><?php echo $item['title'];?></a></h4>
|
||
<p>用户:<?php echo $item['username'];?>
|
||
单位:<?php echo $item['unit'];?>
|
||
申请时间:<?php echo date("Y-m-d H:i:s",strtotime($item['ts_created']));?></p>
|
||
<p>项目:<?php echo $item['project'];?></p>
|
||
<p><span id="data_<?php echo $item['uuid'];?>"></span></p>
|
||
</li>
|
||
<?php endforeach;
|
||
echo "</ul>";
|
||
endif; ?>
|
||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||
</div>
|
||
</div>
|
||
</div>
|