westdc-zf1/application/admin/views/scripts/review/index.phtml

63 lines
2.5 KiB
PHTML
Raw Normal View History

<?php
$this->headTitle($this->config->title->site);
$this->headTitle('后台管理');
$this->headTitle()->setSeparator(' - ');
2014-07-23 08:38:32 +00:00
$this->headLink()->appendStylesheet('/css/admin.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/admin">后台首页</a>');
$this->breadcrumb('元数据评审');
$this->breadcrumb()->setSeparator(' > ');
?>
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; ?>
<h4>最近十条元数据</h4>
<hr />
<table class="stylized table table-bordered table-striped table-hover">
<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>
<td><?= $item['title']?></td>
<td><?php echo $item['realname'].'['.$item['username'].']';?></td>
<td><?php echo $item['status'];?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</table>
<h4>我管理的最近十条元数据</h4>
<table class="stylized table table-bordered table-striped table-hover">
<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>
2011-09-23 08:09:13 +00:00
</div>