2010-07-01 11:44:29 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
|
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
|
|
|
$this->breadcrumb('<a href="/admin/test">数据测试工具</a>');
|
|
|
|
|
$this->breadcrumb('DOI重复检查');
|
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
|
?>
|
2014-07-23 08:38:32 +00:00
|
|
|
|
<div class="hidden-sm hidden-xs col-md-2">
|
2010-07-01 11:44:29 +00:00
|
|
|
|
<?= $this->partial('test/left.phtml'); ?>
|
|
|
|
|
</div>
|
2014-07-23 08:38:32 +00:00
|
|
|
|
<div class="col-md-10 col-sm-12">
|
2010-07-01 11:44:29 +00:00
|
|
|
|
<?php if ($this->msg or $this->messages) :?>
|
2014-07-23 08:38:32 +00:00
|
|
|
|
<div id="message" class="alert alert-info">
|
2010-07-01 11:44:29 +00:00
|
|
|
|
<?php if ($this->msg) : ?>
|
|
|
|
|
<p><?php echo $this->msg; ?></p>
|
|
|
|
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
|
|
|
|
<p><?php echo $msg; ?></p>
|
|
|
|
|
<?php endforeach;endif; ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php if ($this->rows) : ?>
|
|
|
|
|
<div id="mdlist">
|
|
|
|
|
没有DOI的数据:
|
|
|
|
|
<?php foreach ($this->rows as $doi): ?>
|
|
|
|
|
<ul>
|
|
|
|
|
<li><a href="/water/<?= $doi['uuid']; ?>"><?php echo $doi['title']; ?></a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</div>
|
|
|
|
|
<?php else : ?>
|
|
|
|
|
恭喜!没有对应的数据。
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</div>
|