50 lines
1.8 KiB
PHTML
50 lines
1.8 KiB
PHTML
<?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 class="row">
|
|
<div class="hidden-sm hidden-xs col-md-2">
|
|
<?= $this->partial('review/left.phtml'); ?>
|
|
</div>
|
|
<div class="col-md-10 col-sm-12">
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
<div id="message" class="alert alert-info">
|
|
<?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; ?>
|
|
<dl class="dl-horizontal">
|
|
<dt><p>元数据:</p></dt>
|
|
<dd><p>《 <a href="/data/<?php echo $this->info['uuid']; ?>"><?php echo $this->info['title']; ?></a>》</p></dd>
|
|
<dt><p>作者:</p></dt>
|
|
<dd><p><?php echo $this->info['author'];?></p></dd>
|
|
<dt><p>评审状态:</p></dt>
|
|
<dd><p><?php echo $this->info['status'];?></p></dd>
|
|
<dt><p>评审专家:</p></dt>
|
|
<dd><p>
|
|
<ol class="list-padd15">
|
|
<?php echo $this->info['exps'];?>
|
|
</ol>
|
|
</p></dd>
|
|
<dt><p>纳入评审时间:</p></dt>
|
|
<dd><p><?php echo $this->info['ts_created'];?></p></dd>
|
|
<dt><p>开始评审时间:</p></dt>
|
|
<dd><p><?php echo $this->info['ts_accepted'];?></p></dd>
|
|
<dt><p>结束评审时间:</p></dt>
|
|
<dd><p><?php echo $this->info['ts_finished'];?></p></dd>
|
|
<dt><p>管理员:</p></dt>
|
|
<dd><p><?php echo $this->info['realname'];?></p></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
|