2011-10-11 02:25:26 +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('元数据评审');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
|
|
|
<div id="leftPanel">
|
|
|
|
<?= $this->partial('review/left.phtml'); ?>
|
|
|
|
</div>
|
|
|
|
<div id="rightPanel">
|
|
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
|
|
<div id="message">
|
|
|
|
<?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; ?>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>元数据:《 <a href="/data/<?php echo $this->info['uuid']; ?>"><?php echo $this->info['title']; ?></a>》</li>
|
|
|
|
<li>作者:<?php echo $this->info['author'];?></li>
|
|
|
|
<li>评审状态:<?php echo $this->info['status'];?></li>
|
|
|
|
<li>评审专家:<?php echo $this->info['exps'];?></li>
|
|
|
|
<li>纳入评审时间:<?php echo $this->info['ts_created'];?></li>
|
2011-10-11 07:10:02 +00:00
|
|
|
<li>开始评审时间:<?php echo $this->info['ts_accepted'];?></li>
|
2011-10-11 02:25:26 +00:00
|
|
|
<li>结束评审时间:<?php echo $this->info['ts_finished'];?></li>
|
|
|
|
<li>管理员:<?php echo $this->info['realname'];?></li>
|
|
|
|
<li></li>
|
|
|
|
<li></li>
|
|
|
|
<li></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|