Bootstrap Updates
这个提交包含在:
父节点
f506750cfb
当前提交
0c8c14ed8c
共有 6 个文件被更改,包括 15 次插入 和 145 次删除
|
|
@ -12,9 +12,9 @@ class Awards extends CI_Controller {
|
|||
{
|
||||
// Render Page
|
||||
$data['page_title'] = "Awards";
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/index');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
|
||||
public function dxcc ()
|
||||
|
|
@ -25,9 +25,9 @@ class Awards extends CI_Controller {
|
|||
|
||||
// Render Page
|
||||
$data['page_title'] = "Awards - DXCC";
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/dxcc/index');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -61,9 +61,9 @@ class Awards extends CI_Controller {
|
|||
// Render Page
|
||||
$data['page_title'] = "Log View - DXCC";
|
||||
$data['filter'] = str_replace("(and)", ", ", $q);//implode(", ", array_keys($a));
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/dxcc/details');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -78,9 +78,9 @@ class Awards extends CI_Controller {
|
|||
|
||||
// Render Page
|
||||
$data['page_title'] = "Awards - WAB";
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/wab/index');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -95,9 +95,9 @@ class Awards extends CI_Controller {
|
|||
|
||||
// Render page
|
||||
$data['page_title'] = "Awards - SOTA";
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/sota/index');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -112,9 +112,9 @@ class Awards extends CI_Controller {
|
|||
|
||||
// Render page
|
||||
$data['page_title'] = "Awards - WACRAL Members";
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/wacral/index');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
|
||||
public function cq(){
|
||||
|
|
@ -127,8 +127,8 @@ class Awards extends CI_Controller {
|
|||
|
||||
// Render page
|
||||
$data['page_title'] = "Awards - CQ Magazine";
|
||||
$this->load->view('layout/header', $data);
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('awards/cq/index');
|
||||
$this->load->view('layout/footer');
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,18 +0,0 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
|
||||
Handles all functions todo with QSLing.
|
||||
|
||||
*/
|
||||
|
||||
class qsl extends CI_Controller {
|
||||
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->load->view('layout/header');
|
||||
$this->load->view('qsl/main');
|
||||
$this->load->view('layout/footer');
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<div id="container">
|
||||
<div class="container">
|
||||
<h2><?php echo $page_title; ?></h2>
|
||||
|
||||
<ul class="tabs">
|
||||
|
|
|
|||
|
|
@ -1,53 +0,0 @@
|
|||
<div id="container">
|
||||
|
||||
<h2>DX Cluster - <?php echo $band; ?>m</h2>
|
||||
|
||||
<div class="row">
|
||||
<div class="span13">
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
$('#load_spots').load('<?php echo site_url('dxcluster/custom_spots/'.$band);?>').fadeIn("slow");
|
||||
|
||||
});
|
||||
|
||||
var auto_refresh = setInterval(
|
||||
function ()
|
||||
{
|
||||
$('#load_spots').load('<?php echo site_url('dxcluster/custom_spots/'.$band);?>').fadeIn("slow");
|
||||
}, 4000); // refresh every 10000 milliseconds
|
||||
</script>
|
||||
<div class="contents">
|
||||
<table cellspacing="0" class="spots zebra-striped">
|
||||
<tr class="title">
|
||||
<td>Date</td>
|
||||
<td>Callsign</td>
|
||||
<td>Freq</td>
|
||||
<td>DX Callsign</td>
|
||||
<td>Comment</td>
|
||||
</tr>
|
||||
<tbody id="load_spots"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="span2 offset1">
|
||||
<a class="btn primary" href="<?php echo site_url('dxcluster'); ?>">All Spots</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/160'); ?>">160m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/80'); ?>">80m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/40'); ?>">40m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/30'); ?>">30m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/20'); ?>">20m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/17'); ?>">17m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/15'); ?>">15m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/12'); ?>">12m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/10'); ?>">10m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/6'); ?>">6m</a><br>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/4'); ?>">4m</a><br>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/2'); ?>">2m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/07'); ?>">70cm</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/023'); ?>">23cm</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
<div id="container">
|
||||
|
||||
<h2>DX Cluster</h2>
|
||||
|
||||
<div class="row">
|
||||
<div class="span13">
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
$('#load_spots').load('<?php echo site_url('dxcluster/all_spots');?>').fadeIn("slow");
|
||||
|
||||
});
|
||||
|
||||
var auto_refresh = setInterval(
|
||||
function ()
|
||||
{
|
||||
$('#load_spots').load('<?php echo site_url('dxcluster/all_spots');?>').fadeIn("slow");
|
||||
}, 4000); // refresh every 10000 milliseconds
|
||||
</script>
|
||||
<div class="contents">
|
||||
<table cellspacing="0" class="spots zebra-striped">
|
||||
<tr class="title">
|
||||
<td>Date</td>
|
||||
<td>Callsign</td>
|
||||
<td>Freq</td>
|
||||
<td>DX Callsign</td>
|
||||
<td>Comment</td>
|
||||
</tr>
|
||||
<tbody id="load_spots"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="span2 offset1">
|
||||
<a class="btn primary" href="<?php echo site_url('dxcluster'); ?>">All Spots</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/160'); ?>">160m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/80'); ?>">80m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/40'); ?>">40m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/30'); ?>">30m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/20'); ?>">20m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/17'); ?>">17m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/15'); ?>">15m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/12'); ?>">12m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/10'); ?>">10m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/6'); ?>">6m</a><br>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/4'); ?>">4m</a><br>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/2'); ?>">2m</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/07'); ?>">70cm</a>
|
||||
<a class="btn" href="<?php echo site_url('dxcluster/custom/023'); ?>">23cm</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
<h2>QSLing</h2>
|
||||
<div class="wrap_content note">
|
||||
|
||||
<p>QSLing functions.</p>
|
||||
|
||||
</div>
|
||||
正在加载…
在新工单中引用