43 lines
1.6 KiB
PHTML
Executable File
43 lines
1.6 KiB
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('<a href="/admin">后台管理首页</a>');
|
|
$this->breadcrumb('<a href="/admin/down">申请管理</a>');
|
|
$this->breadcrumb('详细信息');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->headScript()->appendFile('/js/prototype.js');
|
|
?>
|
|
<div id="divContent">
|
|
|
|
<div id="leftPanel">
|
|
<?= $this->partial('down/left.phtml'); ?>
|
|
</div>
|
|
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
<div id="message">
|
|
<?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; ?>
|
|
|
|
|
|
<div id="rightPanel">
|
|
<table>
|
|
<tr><td width='80'>姓名</td><td><?php echo $this->infos['username'];?></td></tr>
|
|
<tr><td>单位</td><td><?php echo $this->infos['unit'];?></td></tr>
|
|
<tr><td>电话</td><td><?php echo $this->infos['phone'];?></td></tr>
|
|
<tr><td>地址</td><td><?php echo $this->infos['address'];?></td></tr>
|
|
<tr><td>邮编</td><td><?php echo $this->infos['postcode'];?></td></tr>
|
|
<tr><td>电话</td><td><?php echo $this->infos['phone'];?></td></tr>
|
|
<tr><td>Email</td><td><?php echo $this->infos['email'];?></td></tr>
|
|
<tr><td>用途</td><td><textarea style="width:500px;height:200px;font-size:12px;" readonly="readonly"><?php echo $this->infos['project'];?></textarea></td></tr>
|
|
<tr><td>时间</td><td><?php echo date('Y-m-d H:i:s', strtotime($this->infos['ts_created']));?></td></tr>
|
|
</table>
|
|
</div>
|
|
</div>
|