Cloudlog/application/views/update/index.php
Paul Beesley 0b94674289 Normalise page / card header styles for admin pages
Bring the style of page and card headers into alignment with the LotW admin page.
2020-10-20 21:42:43 +01:00

36 行
1,019 B
PHP

<div class="container">
<h2><?php echo $page_title; ?></h2>
<div class="card">
<div class="card-header">
DXCC Lookup Data
</div>
<div class="card-body">
<p class="card-text">Here you can update the DXCC lookup data that is used for displaying callsign information.</p>
<p class="card-text">This data is provided by <a href="https://clublog.org/">Clublog</a>.</p>
<?php if(!extension_loaded('xml')) { ?>
<div class="alert alert-danger" role="alert">
You must install php-xml for this to work.
</div>
<?php } else { ?>
<input type="submit" id="btn_update_dxcc" value="Update Dxcc" />
<div id="dxcc_update_status">Status:</br></div>
<br/>
<a href="<?php echo site_url('update/check_missing_dxcc');?>">Check missing DXCC/Countries values</a>
<a href="<?php echo site_url('update/check_missing_dxcc/all');?>">[Re-Check ALL]</a>
<style>
#dxcc_update_status{
display: None;
}
</style>
<?php } ?>
</div>
</div>
</div>