63 lines
2.5 KiB
PHTML
63 lines
2.5 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; ?>
|
|
<h4>最近十条元数据</h4>
|
|
<hr />
|
|
<table class="stylized table table-bordered table-striped table-hover">
|
|
<thead><tr>
|
|
<td width='500'>元数据标题</td>
|
|
<td width='150'>管理员</td>
|
|
<td width='150'>状态</td>
|
|
</tr></thead>
|
|
<?php if (count($this->queue)): ?>
|
|
<?php $autoindex=0;?>
|
|
<?php foreach ($this->queue as $item): ?>
|
|
<?php $autoindex++;?>
|
|
<tr>
|
|
<td><?= $item['title']?></td>
|
|
<td><?php echo $item['realname'].'['.$item['username'].']';?></td>
|
|
<td><?php echo $item['status'];?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
<h4>我管理的最近十条元数据</h4>
|
|
<table class="stylized table table-bordered table-striped table-hover">
|
|
<thead><tr>
|
|
<td width='500'>元数据标题</td>
|
|
<td width='150'>状态</td>
|
|
</tr></thead>
|
|
<?php if (count($this->queue)): ?>
|
|
<?php $autoindex=0;?>
|
|
<?php foreach ($this->queue as $item): ?>
|
|
<?php $autoindex++;?>
|
|
<tr class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
|
|
<td><?= $item['title']?></td>
|
|
<td><?php echo $item['status'];?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
</div>
|
|
</div>
|