Made changes to the QSO information popup
这个提交包含在:
父节点
1cc0280650
当前提交
9af164a41d
共有 1 个文件被更改,包括 12 次插入 和 16 次删除
|
|
@ -1,18 +1,15 @@
|
|||
<div class="container-fluid">
|
||||
<?php if ($query->num_rows() > 0) { foreach ($query->result() as $row) { ?>
|
||||
<div class="container-fluid">
|
||||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<?php if ($query->num_rows() > 0) { foreach ($query->result() as $row) { ?>
|
||||
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?>
|
||||
<h1 style="font-size: 28px;">QSO with <?php echo str_replace("0","Ø",strtoupper($row->COL_CALL)); ?> on the <?php $timestamp = strtotime($row->COL_TIME_ON); echo date('d/m/y', $timestamp); $timestamp = strtotime($row->COL_TIME_ON); echo " at ".date('H:i', $timestamp); ?></h1>
|
||||
<?php } else { ?>
|
||||
<h1 style="font-size: 28px;">QSO with <?php echo str_replace("0","Ø",strtoupper($row->COL_CALL)); ?> on the <?php $timestamp = strtotime($row->COL_TIME_ON); echo date('d/m/y', $timestamp);?></h1>
|
||||
<?php } ?>
|
||||
<h3>QSO Details</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
|
||||
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td>Date/Time:</td>
|
||||
|
|
@ -230,18 +227,17 @@
|
|||
<td><?php echo $row->COL_TX_PWR; ?>w</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
|
||||
<tr>
|
||||
<td><a href="<?php echo site_url('qso/edit'); ?>/<?php echo $row->COL_PRIMARY_KEY; ?>" href="javascript:;"><i class="fas fa-edit"></i> Edit QSO</a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col">
|
||||
|
||||
<div id="map" style="width: 340px; height: 250px"></div>
|
||||
|
||||
<?php if(($this->config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
|
||||
<br>
|
||||
<p><a class="btn btn-success" href="<?php echo site_url('qso/edit'); ?>/<?php echo $row->COL_PRIMARY_KEY; ?>" href="javascript:;"><i class="fas fa-edit"></i> Edit QSO</a></p>
|
||||
<?php } ?>
|
||||
|
||||
<div id="map" style="width: 340px; height: 250px"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
正在加载…
在新工单中引用