2011-10-10 08:21:02 +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(' > ');
|
2011-10-20 02:06:24 +00:00
|
|
|
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
|
2011-10-10 08:21:02 +00:00
|
|
|
?>
|
2014-07-23 08:38:32 +00:00
|
|
|
<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; ?>
|
|
|
|
<div class="input-group form-group">
|
2014-09-23 13:50:03 +00:00
|
|
|
<form action="" method="get" class="input-group">
|
2014-07-23 08:38:32 +00:00
|
|
|
<input type="text" class="q form-control" name="keyword" value="<?php echo $this->keyword; ?>" placeholder="搜索关键字" />
|
|
|
|
<input type="hidden" name="search" value='1' />
|
|
|
|
<input type="hidden" name="id" value='<?php echo $this->id;?>' />
|
|
|
|
<span class="input-group-btn"><button class="btn btn-default" type="submit" id="search_btn">搜索</button></span>
|
|
|
|
</form>
|
|
|
|
</div><!-- search DIV -->
|
|
|
|
<form action="" method="post">
|
|
|
|
<table class="stylized table table-bordered table-striped table-hover">
|
|
|
|
<thead><tr>
|
|
|
|
<td width='40'>选择</td>
|
|
|
|
<td width='600'>标题</td>
|
|
|
|
<td width="130">操作</td>
|
|
|
|
</tr></thead>
|
|
|
|
<?php if (count($this->paginator)): ?>
|
|
|
|
<tbody id="list">
|
|
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
|
|
<tr>
|
|
|
|
<td><input type="checkbox" name="update[]" value="<?php echo $item['id']; ?>"/></td>
|
|
|
|
<td><a href="/data/<?php echo $item['uuid'];?>"><?php echo $item['title']; ?></a></td>
|
|
|
|
<td>
|
|
|
|
<a href="/admin/review/canceled/update/<?php echo $item['id']; ?>">重置</a>
|
|
|
|
<a href="/admin/review/changeadmin/?id=<?php echo $item['id'];?>">更改管理员</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
<?php endif; ?>
|
|
|
|
</table>
|
|
|
|
<input class="btn btn-primary" type="submit" value="重置选中的元数据评审" />
|
|
|
|
</form>
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
</div>
|
2011-10-20 02:06:24 +00:00
|
|
|
</div>
|
|
|
|
<script>$("#list tr").mouseover(function(){$(this).addClass("high")}).mouseout(function(){$(this).removeClass("high")})</script>
|