56 lines
1.6 KiB
PHTML
56 lines
1.6 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="divContent">
|
||
|
<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; ?>
|
||
|
<div id="rightPanel">
|
||
|
|
||
|
|
||
|
<table>
|
||
|
<tr style="color:#FFF;background:#0a3e68;line-height:30px;">
|
||
|
<td width='40'>ID</td>
|
||
|
<td width='500'>标题</td>
|
||
|
<td width='100'>状态</td>
|
||
|
<td width="150">操作</td>
|
||
|
</tr>
|
||
|
<?php if (count($this->paginator)): ?>
|
||
|
<?php $autoindex=0;?>
|
||
|
<?php foreach ($this->paginator as $item): ?>
|
||
|
<?php $autoindex++;?>
|
||
|
<tr <?php if($autoindex%2 == 0) echo 'bgcolor="#CCCCCC"'; else echo 'bgcolor="#FFFFFF"'; ?>>
|
||
|
<td><?php echo $item['id']; ?></td>
|
||
|
<td><?php echo $item['title']; ?></td>
|
||
|
<td><?php echo $item['status']; ?></td>
|
||
|
<td><a href="/admin/inreview/show/<?php echo $item['id']; ?>">查看详细</a></td>
|
||
|
</tr>
|
||
|
<?php endforeach; ?>
|
||
|
<?php endif; ?>
|
||
|
</table>
|
||
|
<div style="width:50%;text-align:left;">
|
||
|
<?= $this->paginator; ?></div>
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|