42 lines
1.1 KiB
PHTML
42 lines
1.1 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
$this->Theme->AppendPlus($this,'colorbox');
|
|
$this->Theme->AppendPlus($this,'uploadify');
|
|
$this->Theme->AppendModel($this,'admin-down-offlineapps');
|
|
$this->Theme->AppendModel($this,'sfadmin');
|
|
function applicationform($form)
|
|
{
|
|
if(empty($form))
|
|
{
|
|
return "未提交";
|
|
}else{
|
|
return '<a href="/admin/down/applicationform/ac/download">点击下载</a>';
|
|
}
|
|
}
|
|
?>
|
|
<style>
|
|
table thead tr th {background:#EBF2F6;color:#444;}
|
|
.high{background:#444;color:#FFF;}
|
|
</style>
|
|
<div class="row-fluid">
|
|
<div class="span3">
|
|
<?= $this->partial('down/left.phtml'); ?>
|
|
</div>
|
|
<div class="span9">
|
|
|
|
<?= $this->partial('down/offlineapps-navpills.phtml',array('navIn'=>$this->navIn)); ?>
|
|
|
|
<h2>发给作者</h2>
|
|
|
|
|
|
|
|
</div><!-- span9 -->
|
|
</div>
|
|
<script>
|
|
var _this = {};
|
|
sfadmin.init();
|
|
</script>
|
|
<?= $this->partial('down/offlineapps-uploaderform.phtml'); ?> |