2011-10-19 04:03:13 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle('后台管理');
|
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
|
|
|
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
|
|
|
|
|
$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; ?>
|
2011-10-19 09:18:46 +00:00
|
|
|
|
<div class="ctrlplan">
|
|
|
|
|
<a href="/admin/review/comments/">按评审数据查看</a>
|
|
|
|
|
<a href="/admin/review/comments/ac/listbyuser">按评审用户查看</a>
|
|
|
|
|
<a href="/admin/review/comments/ac/list">直接查看评审意见列表</a>
|
|
|
|
|
</div>
|
2011-10-19 04:03:13 +00:00
|
|
|
|
<div class="search">
|
|
|
|
|
<form action="" method="get">
|
|
|
|
|
<input type="hidden" name="search" value='1' />
|
|
|
|
|
<input type="hidden" name="id" value='<?php echo $this->id;?>' />
|
|
|
|
|
<label>搜索关键字</label><input type="text" name="q" value="<?php echo $this->q; ?>" />
|
|
|
|
|
<input type="submit" class="btn" value="搜索" />
|
|
|
|
|
</form>
|
|
|
|
|
</div><!-- search DIV -->
|
|
|
|
|
<table class="stylized">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<td width='600'>标题</td>
|
|
|
|
|
<td width='80'>评审人</td>
|
|
|
|
|
<td width='80'>操作</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<?php if (count($this->paginator)): ?>
|
|
|
|
|
<tbody id="list">
|
|
|
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><a href="/data/<?php echo $item['uuid'];?>"><?php echo $item['title']; ?></a>
|
|
|
|
|
<br />评审时间: <?php echo date("Y-m-d H:i",strtotime($item['ts_created'])); ?> 是否为受邀专家:<?php
|
|
|
|
|
if($item['is_expert']==false)echo "否";else echo "是";
|
2011-10-19 09:35:18 +00:00
|
|
|
|
?> <?php
|
|
|
|
|
if(time()-strtotime($item['ts_created'])<1800)
|
|
|
|
|
{echo '<strong style="color:red">New!</strong>';}
|
2011-10-19 04:03:13 +00:00
|
|
|
|
?></td>
|
|
|
|
|
<td><?php echo $item['realname'];?></td>
|
2011-10-19 07:40:15 +00:00
|
|
|
|
<td><a href="/admin/review/comments/ac/view/id/<?php echo $item['id']?>">查看详细</a></td>
|
2011-10-19 04:03:13 +00:00
|
|
|
|
</tr>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</tbody>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
</table>
|
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
|
</div>
|
|
|
|
|
<script>$("#list tr").mouseover(function(){$(this).addClass("high")}).mouseout(function(){$(this).removeClass("high")})</script>
|