39 lines
940 B
PHP
39 lines
940 B
PHP
<div class="panel-heading">
|
|
<b>Country</b>
|
|
</div>
|
|
<form>
|
|
<div class="table-responsive">
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<td >
|
|
<div id="reason_msg"></div>
|
|
<?= $country_table ?>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</form>
|
|
<script type="text/javascript">
|
|
<!--
|
|
|
|
function allowStatus(countyry_code,action){
|
|
|
|
alert(countyry_code);
|
|
|
|
$('#allow-'+countyry_code).html('Processing...');
|
|
// $('#acc' + countyry_code).prop('disabled', true);
|
|
$.ajax({
|
|
url: "/confg/allowCountry?countyry_code=" + countyry_code + "&action=" + action
|
|
}).done(function (data) {
|
|
$('#allow-'+countyry_code).html(data);
|
|
// $('#acc' + countyry_code).prop('disabled', false);
|
|
});
|
|
return false;
|
|
|
|
}
|
|
// -->
|