2011-09-06 07:57:44 +00:00
|
|
|
<?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>');
|
2011-09-09 09:42:08 +00:00
|
|
|
$this->breadcrumb('<a href="/admin/stat">统计</a>');
|
|
|
|
$this->breadcrumb('<a href="/admin/stat/onlineapp">在线下载记录</a>');
|
|
|
|
$this->breadcrumb('详细信息');
|
2011-09-06 07:57:44 +00:00
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
2011-09-09 09:42:08 +00:00
|
|
|
$this->headScript()->appendFile('/js/prototype.js');
|
2011-09-06 07:57:44 +00:00
|
|
|
?>
|
|
|
|
<div id="divContent">
|
|
|
|
|
|
|
|
<div id="leftPanel">
|
|
|
|
<ul>
|
2011-09-09 09:42:08 +00:00
|
|
|
<li><a href="/admin/onlineapp">所有在线下载记录</a></li>
|
|
|
|
<li><a href="/admin/onlineapp/datas">数据下载记录统计</a></li>
|
|
|
|
<li><a href="/admin/onlineapp/users">用户下载记录统计</a></li>
|
2011-09-06 07:57:44 +00:00
|
|
|
</ul>
|
2011-09-09 09:42:08 +00:00
|
|
|
|
2011-09-06 07:57:44 +00:00
|
|
|
</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; ?>
|
|
|
|
|
2011-09-09 09:42:08 +00:00
|
|
|
|
2011-09-06 07:57:44 +00:00
|
|
|
<div id="rightPanel">
|
|
|
|
<table>
|
2011-09-09 09:42:08 +00:00
|
|
|
<tr><td width="80">记录ID</td><td><?php echo $this->infos['id'];?></td></tr>
|
|
|
|
<tr><td>用户名</td><td><?php echo $this->infos['uname'];?> > <a href="/admin/user/show/id/<?php echo $this->infos['uid'];?>">察看用户</a></td></tr>
|
|
|
|
<tr><td>姓名</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;"><?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>
|
|
|
|
<tr><td>项目名称</td><td><?php echo $this->infos['title'];?> > <a href="/data/<?php echo $this->infos['uuid'];?>">查看项目</a></td></tr>
|
2011-09-06 07:57:44 +00:00
|
|
|
</table>
|
2011-09-09 09:42:08 +00:00
|
|
|
<div style="width:50%;text-align:left;">
|
|
|
|
<?= $this->paginator; ?>
|
|
|
|
</div>
|
2011-09-06 07:57:44 +00:00
|
|
|
</div>
|