Blue Solid = Add something, activate something, or perform any other primary action. Blue Outline = Edit, change or update something. Red = Delete something or make an irreversable change. Grey = Deactivate something. Yellow = Reset something or clear a field. Green = Retained for search. Added icons where it made sense to do so.
50 行
无行尾
1.4 KiB
PHP
50 行
无行尾
1.4 KiB
PHP
|
|
<div class="container eqsl">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="card-title">eQSL QSO Upload</div>
|
|
<ul class="nav nav-tabs card-header-tabs">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="<?php echo site_url('eqsl/import');?>">Download QSOs</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="<?php echo site_url('eqsl/Export');?>">Upload QSOs</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<?php $this->load->view('layout/messages'); ?>
|
|
|
|
<?php
|
|
if (isset($eqsl_table))
|
|
{
|
|
?>
|
|
<p>The following QSOs have not been sent to eQSL.cc</p>
|
|
|
|
<p>Please make sure you have defined the eQSL QTH Nickname in the Station Profile this matches the QTH Nickname you used within eQSL.</p>
|
|
<?php
|
|
|
|
echo $eqsl_table;
|
|
echo "<p>Clicking \"Upload QSOs\" will send QSO information to eQSL.cc.</p>";
|
|
echo form_open('eqsl/export');
|
|
echo "<input type=\"hidden\" name=\"eqslexport\" id=\"eqslexport\" value=\"export\" />";
|
|
echo "<input class=\"btn btn-primary\" type=\"submit\" value=\"Upload QSOs\" /></form>";
|
|
}
|
|
else
|
|
{
|
|
if (isset($eqsl_results_table))
|
|
{
|
|
echo "<p>The following QSOs were sent to eQSL.cc</p>";
|
|
echo $eqsl_results_table;
|
|
}
|
|
else
|
|
{
|
|
echo "<p>There are no QSOs that need to be sent to eQSL.cc at this time. Go log some more QSOs!</p>";
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
</div>
|