52 lines
2.3 KiB
PHTML
52 lines
2.3 KiB
PHTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>黑河计划数据管理中心 - 后台管理</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<link href="/js/lib/bootstrap3/css/bootstrap.min.css" rel="stylesheet" media="screen">
|
|
<script src="/js/lib/jquery.lasted.js"></script>
|
|
<script src="/js/lib/bootstrap3/js/bootstrap.min.js"></script>
|
|
<script src="/js/navi.js"></script>
|
|
<link href="/css/admin.css" media="screen" rel="stylesheet" type="text/css" >
|
|
<link rel="shortcut icon" href="/favicon_64.png" />
|
|
<link rel="alternate" type="application/rss+xml" title="WestDC RSS Feed" href="/data/feed" />
|
|
<link rel="pingback" href="http://westdc.westgis.ac.cn/data/pingback" />
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<?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; ?>
|
|
<table class="stylized table table-bordered table-striped table-hover">
|
|
<thead><tr>
|
|
<th width='80'>用户ID</th>
|
|
<th width='100'>用户名</th>
|
|
<th width='100'>姓名</th>
|
|
<th width="100">电子邮箱</th>
|
|
<th width="100">操作</th>
|
|
</tr></thead>
|
|
<?php if (count($this->paginator)): ?>
|
|
<?php $autoindex=0;?>
|
|
<?php foreach ($this->paginator as $item): ?>
|
|
<?php $autoindex++;?>
|
|
<tr>
|
|
<td><?php echo $item['id']; ?></td>
|
|
<td><?php echo $item['username']; ?></td>
|
|
<td><?php echo $item['realname']; ?></td>
|
|
<td><?php echo $item['email']; ?></td>
|
|
<td><a href="/admin/review/changeadmin/?id=<?php echo $this->id;?>&uid=<?php echo $item['id'];?>">设置为此评审的管理员</a></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</table>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|
|
</body>
|
|
</html>
|