2011-10-09 03:49:20 +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="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">
|
2011-10-11 02:25:26 +00:00
|
|
|
|
|
|
|
<div class="search">
|
|
|
|
<form action="" method="get">
|
|
|
|
<input type="hidden" name="search" value='1' />
|
|
|
|
<ul>
|
|
|
|
<li><label>搜索关键字</label><input type="text" name="keyword" value="<?php echo $this->keyword; ?>" /></li>
|
|
|
|
<li><input type="submit" class="searchbtn" value="搜索" /></li>
|
|
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
</div><!-- search DIV -->
|
2011-10-09 03:49:20 +00:00
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr style="color:#FFF;background:#0a3e68;line-height:30px;">
|
2011-10-11 02:25:26 +00:00
|
|
|
<td width='600'>标题</td>
|
2011-10-09 03:49:20 +00:00
|
|
|
<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['title']; ?></td>
|
|
|
|
<td><?php echo $item['status']; ?></td>
|
2011-10-11 02:25:26 +00:00
|
|
|
<td><a href="/admin/review/inreview/show/<?php echo $item['id']; ?>">查看详细</a></td>
|
2011-10-09 03:49:20 +00:00
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</table>
|
|
|
|
<div style="width:50%;text-align:left;">
|
|
|
|
<?= $this->paginator; ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|