52 lines
2.2 KiB
PHTML
52 lines
2.2 KiB
PHTML
|
<?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('<a href="/admin/sys">系统管理</a>');
|
||
|
$this->breadcrumb('邮件模板管理');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
?>
|
||
|
<div id="leftPanel">
|
||
|
<?= $this->partial('sys/left.phtml'); ?>
|
||
|
</div>
|
||
|
|
||
|
<div id="rightPanel">
|
||
|
<div class="ctrlplan">
|
||
|
<a href="/admin/sys/message/do/listall">查看所有消息</a>
|
||
|
<a href="/admin/sys/message/">查看新消息</a>
|
||
|
</div>
|
||
|
<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" class="q" name="q" value="<?php echo $this->q; ?>" />
|
||
|
<input type="submit" class="btn" value="搜索" />
|
||
|
</form>
|
||
|
</div>
|
||
|
<?php if($this->totle > 0) echo '共 <strong style="font-weight:bold;color:red;">'.$this->totle.'</strong> 条未读消息';?>
|
||
|
<table class="stylized">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td width='400'>标题</td>
|
||
|
<td width="120">时间</td>
|
||
|
<td width='180'>操作</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<?php if (count($this->paginator)): ?>
|
||
|
<tbody id="list">
|
||
|
<?php foreach ($this->paginator as $item): ?>
|
||
|
<tr>
|
||
|
<td><a href="/admin/sys/message/do/read/id/<?php echo $item['id'];?>"><?php if(!empty($item['title'])) echo $item['title']; else echo "无标题"; ?></a></td>
|
||
|
<td><?php echo date("Y-m-d H:i",strtotime($item['sendtime'])); ?></td>
|
||
|
<td>[<a href="/admin/sys/message/do/read/id/<?php echo $item['id'];?>">查看</a>] [<a href="">标记为已读</a>]</td>
|
||
|
</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>
|