-
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normalise page / card header styles for admin pages
Bring the style of page and card headers into alignment with the LotW admin page.
- Loading branch information
1 parent
5050903
commit 0b94674
Showing
17 changed files
with
88 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,36 @@ | ||
<div class="container"> | ||
<h2><?php echo $page_title; ?></h2> | ||
|
||
<?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> | ||
<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> | ||
|
||
<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 } ?> | ||
<?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> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters