25 lines
923 B
PHTML
Executable File
25 lines
923 B
PHTML
Executable File
<?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('后台管理首页');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div id="leftPanel">
|
|
<?= $this->partial('user/left.phtml'); ?>
|
|
</div>
|
|
|
|
<div id="rightPanel">
|
|
<div>用户总数: <?php echo $this->su['total'];?>,其中管理员: <?php echo $this->suadmin['total'];?></div>
|
|
<div>搜索用户
|
|
<form action="/admin/user/search/" method="get">
|
|
<input type="hidden" name="search" value='1' />
|
|
<div>姓名 <input type="text" name="realname" /></div>
|
|
<div>单位 <input type="text" name="unit" /></div>
|
|
<div>项目 <input type="text" name="project" /></div>
|
|
<div><input type="submit" value="搜索" /></div>
|
|
</form>
|
|
</div>
|
|
</div>
|