2013-04-29 16:07:34 +00:00
|
|
|
|
<?php
|
|
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
|
$this->headTitle($this->config->title->data);
|
2013-11-10 08:34:18 +00:00
|
|
|
|
$this->headTitle('Funding');
|
2013-04-29 16:07:34 +00:00
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
2013-11-10 08:34:18 +00:00
|
|
|
|
$this->nav[] = array('link'=>"/data/fund",'title'=>'Funding');
|
2013-04-29 16:07:34 +00:00
|
|
|
|
?>
|
2013-05-13 03:57:27 +00:00
|
|
|
|
<div class='row-fluid'>
|
|
|
|
|
<?= $this->render('breadcrumbs.phtml') ?>
|
2013-04-29 16:07:34 +00:00
|
|
|
|
<?= $this->partial('data/tools.phtml'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php if (!empty($this->paginator)) : ?>
|
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
|
<?php foreach($this->paginator as $md) : ?>
|
|
|
|
|
<div class="well">
|
2013-11-10 08:34:18 +00:00
|
|
|
|
<h4><a href="/data/fund/id/<?php echo $md['id'];?>"><?php echo $this->escape($md['title_en']);?></a></h4>
|
|
|
|
|
No. <a href="/data/fund/id/<?php echo $md['id'];?>"><?php echo $md['fund_id']; ?></a> | Type: <?php echo $md['fund_type_en']; ?> | Datasets: <?php echo $md['datacount']; ?>,Total <?php echo $md['filesize']>5000?(round($md['filesize']/1024,2)).'GB':$md['filesize'].'MB'; ?></div>
|
2013-04-29 16:07:34 +00:00
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
|
<?php else : ?>
|
2013-11-10 08:34:18 +00:00
|
|
|
|
No metadata.
|
2013-04-29 16:07:34 +00:00
|
|
|
|
<?php endif; ?>
|