1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php if(!defined('UC_ROOT')) exit('Access Denied');?>
- <?php include $this->gettpl('header');?>
- <script src="js/common.js" type="text/javascript"></script>
- <div class="container">
- <h3 class="marginbot">
- 事件列表
- <?php if($user['allowadminnote'] || $user['isfounder']) { ?><a href="admin.php?m=note&a=ls" class="sgbtn">通知列表</a><?php } ?>
- <?php if($user['allowadminlog'] || $user['isfounder']) { ?><a href="admin.php?m=log&a=ls" class="sgbtn">日志列表</a><?php } ?>
- <a href="admin.php?m=mail&a=ls" class="sgbtn">邮件队列</a>
- </h3>
- <div class="mainbox">
- <?php if($feedlist) { ?>
- <form action="admin.php?m=note&a=ls" method="post">
- <input type="hidden" name="formhash" value="<?php echo FORMHASH;?>">
- <table class="datalist" style="table-layout:fixed">
- <tr>
- <th width="100">时间</th>
- <th> </th>
- </tr>
- <?php foreach((array)$feedlist as $feed) {?>
- <tr>
- <td><?php echo $feed['dateline'];?></td>
- <td><?php echo $feed['title_template'];?></td>
- </tr>
- <?php } ?>
- <tr class="nobg">
- <td></td>
- <td class="tdpage"><?php echo $multipage;?></td>
- </tr>
- </table>
- </form>
- <?php } else { ?>
- <div class="note">
- <p class="i">目前没有相关记录!</p>
- </div>
- <?php } ?>
- </div>
- </div>
- <?php include $this->gettpl('footer');?>
|