35 lines
1.5 KiB
PHTML
35 lines
1.5 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle($this->config->title->data);
|
||
$this->headTitle('离线申请');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headLink()->appendStylesheet('/css/order.css');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||
$this->breadcrumb('<a href="/data/order">离线申请</a>');
|
||
$this->breadcrumb('生成离线申请表');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
<div id="message">
|
||
<?php if ($this->messages): foreach($this->messages as $msg): ?>
|
||
<p><?php echo $msg; ?></p>
|
||
<?php endforeach;endif; ?>
|
||
<?php if ($this->msg) : ?>
|
||
<p><?php echo $this->msg; ?></p>
|
||
<?php endif; ?>
|
||
</div>
|
||
<div id="data2">
|
||
<p> 为促进中国西部资源与生态环境科学研究,更好的为西部大开发服务,充分利用数据中心多年来的数据积累及国家自然科学基金委员会“中国西部环境与生态科学研究计划”、数字流域等的数据产出,
|
||
根据我国科学数据共享和基金项目数据管理的有关规定, 中科院寒区旱区环境与工程研究所(简称甲方)同意接收__________(以下简称乙方)的数据申请,并签订数据使用协议:
|
||
</p>
|
||
<h1>数据清单</h1>
|
||
<ul>
|
||
<?php foreach ($this->data2 as $i=>$md) : ?>
|
||
<li><?php echo ($i+1).". ".$md['title']; ?></li>
|
||
<?php endforeach; ?>
|
||
</ul>
|
||
</div>
|
||
<div id="user">
|
||
<h1>用户信息(请务必输入真实信息以便邮寄!)</h1>
|
||
<?php echo $this->form;?>
|
||
</div>
|