2011-09-10 15:09:13 +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>');
|
|
|
|
$this->breadcrumb('<a href="/admin/down">申请管理</a>');
|
|
|
|
$this->breadcrumb('在线数据下载记录</a>');
|
|
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
|
|
?>
|
|
|
|
<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; ?>
|
2011-09-13 02:51:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
<div id="rightPanel">
|
|
|
|
<div style="font-size:16px;line-height:30px;">共有 <?php echo $this->t['total'];?> 条在线下载记录</div>
|
|
|
|
<table>
|
|
|
|
<tr style="color:#FFF;background:#0a3e68;line-height:30px;">
|
|
|
|
<td width='100'>姓名</td>
|
|
|
|
<td width='150'>单位</td>
|
|
|
|
<td width='350'>数据</td>
|
|
|
|
<td width='300'>用途</td>
|
|
|
|
<td width='120'>下载时间</td>
|
|
|
|
<td width='100'>操作</td>
|
|
|
|
</tr>
|
2011-09-10 15:09:13 +00:00
|
|
|
<?php if (count($this->paginator)): ?>
|
2011-09-13 02:51:34 +00:00
|
|
|
<?php $autoindex=0;?>
|
2011-09-10 15:09:13 +00:00
|
|
|
<?php foreach ($this->paginator as $item): ?>
|
2011-09-13 02:51:34 +00:00
|
|
|
<?php $autoindex++;?>
|
|
|
|
<tr <?php if($autoindex%2 == 0) echo 'bgcolor="#CCCCCC"'; else echo 'bgcolor="#FFFFFF"'; ?>>
|
|
|
|
<td><img src="/images/user.gif" /><?= $item['username']?></td>
|
|
|
|
<td><?= $item['unit']?></td>
|
|
|
|
<td><img src="/images/data.gif" /><a href="/data/<?php echo $item['uuid'];?>" target="_blank"><?php echo $item['title'];?></a></td>
|
|
|
|
<td><textarea readonly="readonly" style="width:300px;height:100px;border:none;font-size:12px;"><?php echo $item['project']; ?></textarea></td>
|
|
|
|
<td><?php echo date('Y-m-d H:i:s', strtotime($item['ts_created'])); ?></td>
|
|
|
|
<td>
|
|
|
|
<a href='/admin/down/online/ac/show/id/<?php echo $item['id'];?>'>查看详细</a>
|
|
|
|
<a href='/admin/down/online/ac/delete/id/<?= $item['id'];?>/' onclick="return confirm('确定将此记录删除?')">删除</a>
|
2011-09-10 15:09:13 +00:00
|
|
|
</td>
|
2011-09-13 02:51:34 +00:00
|
|
|
</tr>
|
2011-09-10 15:09:13 +00:00
|
|
|
<?php endforeach; ?>
|
2011-09-13 02:51:34 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
</table>
|
|
|
|
<div style="width:50%;text-align:left;">
|
|
|
|
<?= $this->paginator; ?>
|
|
|
|
</div>
|
2011-09-10 15:09:13 +00:00
|
|
|
</div>
|