62 lines
1.9 KiB
PHTML
62 lines
1.9 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 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; ?>
|
|
|
|
最近十条元数据
|
|
<table><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 class="<?php if($autoindex%2 == 0) echo 'even'; else echo 'odd'; ?>">
|
|
<td><?= $item['title']?></td>
|
|
<td><?php echo $item['realname'].'['.$item['username'].']';?></td>
|
|
<td><?php echo $item['status'];?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
<br />
|
|
我管理的最近十条元数据
|
|
<table><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>
|