2020-08-06 06:26:28 +00:00
|
|
|
|
<link rel="stylesheet"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
href="<?= base_url('bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css') ?>">
|
|
|
|
|
<link rel="stylesheet" href="<?= base_url('bower_components/bootstrap-daterangepicker/daterangepicker.css') ?>">
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<link rel="stylesheet"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
href="<?= base_url('bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css') ?>">
|
|
|
|
|
<link rel="stylesheet" href="<?= base_url('bower_components/toastr/toastr.css') ?>">
|
2022-04-15 07:47:21 +00:00
|
|
|
|
<link rel="stylesheet" href="<?= base_url('bower_components/google-material-icons/google-material-icons.min.css') ?>">
|
|
|
|
|
|
|
|
|
|
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Brick\Money\Money;
|
|
|
|
|
|
|
|
|
|
$context = new \Brick\Money\Context\AutoContext();
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
<div class="content-wrapper">
|
|
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
|
<section class="content-header">
|
|
|
|
|
|
|
|
|
|
<h1>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
Nano crédit <?= $network . ' - ' . $country; ?>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</h1>
|
|
|
|
|
<?php
|
2021-10-14 14:33:02 +00:00
|
|
|
|
|
2020-08-06 06:26:28 +00:00
|
|
|
|
|
|
|
|
|
if ($alert == "ok") {
|
|
|
|
|
|
|
|
|
|
if (!$success == "ok") {
|
|
|
|
|
?>
|
|
|
|
|
<div class='alert alert-danger alert-dismissible col-xs-6'>
|
|
|
|
|
<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×</button>
|
|
|
|
|
<h4><i class='icon fa fa-ban'></i> Erreur!</h4>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<?= $message; ?>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
} else {
|
|
|
|
|
?>
|
|
|
|
|
<div class="alert alert-success alert-dismissible col-xs-6">
|
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
|
|
|
<h4><i class="icon fa fa-check"></i> Success!</h4>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<?= $message; ?>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section class="content">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-4 col-xs-6">
|
|
|
|
|
<div class="small-box bg-green-active">
|
|
|
|
|
<div class="inner">
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<h3><?= Money::of(round($configWallet->limite_credit_min, 2), $currency_code, $context)->formatTo('fr_FR') ?></h3>
|
|
|
|
|
<p><?= $this->lang->line('minimum_credit_limit') ?></p>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
<div class="icon">
|
|
|
|
|
<i class="ion ion-cash"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-lg-4 col-xs-6">
|
|
|
|
|
<div class="small-box bg-red-active">
|
|
|
|
|
<div class="inner">
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<h3><?= Money::of(round($configWallet->limite_credit_max, 2), $currency_code, $context)->formatTo('fr_FR'); ?></h3>
|
|
|
|
|
<p><?= $this->lang->line('maximum_credit_limit') ?></p>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
<div class="icon">
|
|
|
|
|
<i class="ion ion-cash"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
2020-08-14 16:21:08 +00:00
|
|
|
|
<div class="col-lg-4">
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<div class="margin">
|
|
|
|
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#modal-limit"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
style="width: 100%"><?= $this->lang->line('change_the_credit_limit') ?></button>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-08-14 16:21:08 +00:00
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
<div class="margin">
|
2020-08-27 09:37:45 +00:00
|
|
|
|
<a class="btn btn-info"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
href="<?= current_url() . ($network_id ? '?config=nano_credit' : '') ?>"
|
|
|
|
|
style="width: 100%"><?= $this->lang->line('edit_nano_credit') ?></a>
|
2020-08-14 16:21:08 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
|
<div class="margin">
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<a href="<?= current_url() . ($network_id ? '?config=epargne' : '') ?>"
|
2020-08-27 09:37:45 +00:00
|
|
|
|
class="btn btn-success"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
style="width: 100%"><?= $this->lang->line('edit_savings') ?></a>
|
2020-08-14 16:21:08 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
2020-08-10 18:11:05 +00:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<div class="box">
|
|
|
|
|
<div class="box-header">
|
|
|
|
|
<h3 class="box-title">
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<?= $this->lang->line('users_groups') ?></h3>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
<div class="box-tools">
|
2020-09-09 07:27:25 +00:00
|
|
|
|
<a class="btn btn-success" href="
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<?= current_url() . ($network_id ? '?history=savings' : '') ?>">
|
|
|
|
|
<?= $this->lang->line('savings_history'); ?>
|
2020-09-09 07:27:25 +00:00
|
|
|
|
</a>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
<a class="btn btn-primary" href="
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<?= current_url() . ($network_id ? '?history=nano_credit' : '') ?>">
|
|
|
|
|
<?= $this->lang->line('nano_credit_history'); ?>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-body" style="overflow-x:auto;">
|
|
|
|
|
<table id="example1" class="table table-bordered table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<?php
|
|
|
|
|
echo "<th>" . $this->lang->line('group_code') . "</th>
|
|
|
|
|
<th>" . $this->lang->line('Nom') . "</th>
|
|
|
|
|
<th>" . $this->lang->line('creator') . "</th>
|
|
|
|
|
<th>" . $this->lang->line('credit_limit') . "</th>
|
|
|
|
|
<th> Status</th>
|
2020-09-28 15:44:45 +00:00
|
|
|
|
<th>" . $this->lang->line('number_of_users') . "</th>
|
|
|
|
|
<th>" . $this->lang->line('created_date') . "</th>
|
|
|
|
|
<th> Action </th>";
|
2020-08-10 18:11:05 +00:00
|
|
|
|
?>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<?php
|
2022-04-19 10:38:29 +00:00
|
|
|
|
if ($groups) {
|
2020-08-10 18:11:05 +00:00
|
|
|
|
foreach ($groups->result() as $row) {
|
|
|
|
|
echo "<tr>
|
|
|
|
|
<td>" . $row->code_groupe . "</td>
|
|
|
|
|
<td>" . $row->nom . "</td>
|
|
|
|
|
<td>" . $row->createur . "</td>
|
|
|
|
|
<td>" . Money::of(round($row->limite_credit, 2), $row->currency_code, $context)->formatTo('fr_FR') . "</td>
|
2020-09-28 15:44:45 +00:00
|
|
|
|
";
|
2020-08-10 18:11:05 +00:00
|
|
|
|
?>
|
|
|
|
|
<?php
|
|
|
|
|
if ($row->actif) {
|
|
|
|
|
?>
|
|
|
|
|
<td>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<span class="label label-success"><?= $this->lang->line('Actif') ?></span>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
} else {
|
|
|
|
|
?>
|
|
|
|
|
<td>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<span class="label label-danger"><?= $this->lang->line('Inactif') ?></span>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
2020-09-28 15:44:45 +00:00
|
|
|
|
<td> <?= $row->nombre_utilisateurs?> </td>
|
|
|
|
|
|
2020-08-10 18:11:05 +00:00
|
|
|
|
<td> <?= $row->date_creation ?> </td>
|
2020-09-28 15:44:45 +00:00
|
|
|
|
<td>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<a href="<?= current_url().('?group='.$row->code_groupe)?>" class="btn btn-primary btn-block" <?php if(!$row->id_network) echo "disabled"?> >
|
|
|
|
|
<b><?= $this->lang->line('Voir plus...'); ?></b>
|
2020-09-28 15:44:45 +00:00
|
|
|
|
</a>
|
|
|
|
|
</td>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
</tr>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<div class="modal fade" id="modal-limit">
|
|
|
|
|
<div class="modal-dialog">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
|
</button>
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<h3 class="modal-title"><?= $this->lang->line('set_credit_limit'); ?></h3>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
<form id="limitForm">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="limit_min"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
class="col-form-label"><?= $this->lang->line('minimum_credit_limit'); ?></label>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<input type="number" min="0" step=".01" required class="form-control"
|
|
|
|
|
id="limit_min" name="limit_min"
|
|
|
|
|
value="<?= $configWallet->limite_credit_min ?>">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="limit_max"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
class="col-form-label"><?= $this->lang->line('maximum_credit_limit'); ?></label>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<input type="number" min="0" step=".01" required class="form-control"
|
|
|
|
|
name="limit_max" id="limit_max"
|
|
|
|
|
value="<?= $configWallet->limite_credit_max ?>">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button type="button" class="btn btn-default pull-left"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
data-dismiss="modal"><?= $this->lang->line('Fermer'); ?></button>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<button type="button" id="saveLimit" data-network-id="<?= $network_id ?>"
|
2022-04-18 11:39:19 +00:00
|
|
|
|
class="btn btn-primary"><?= $this->lang->line('save'); ?></button>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- jQuery 3 -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/jquery/dist/jquery.min.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<!-- Bootstrap 3.3.7 -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<!-- DataTables -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/datatables.net/js/jquery.dataTables.min.js') ?>"></script>
|
|
|
|
|
<script src="<?= base_url('bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<!-- Slimscroll -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/jquery-slimscroll/jquery.slimscroll.min.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<!-- FastClick -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/fastclick/lib/fastclick.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<!-- AdminLTE App -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('dist/js/adminlte.min.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<!-- AdminLTE for demo purposes -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('dist/js/demo.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/moment/min/moment.min.js') ?>"></script>
|
|
|
|
|
<script src="<?= base_url('bower_components/bootstrap-daterangepicker/daterangepicker.js') ?>"></script>
|
|
|
|
|
<script src="<?= base_url('bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js') ?>"></script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js"></script>
|
|
|
|
|
<!-- ChartJS -->
|
2022-04-18 11:39:19 +00:00
|
|
|
|
<script src="<?= base_url('bower_components/chart.js/Chart.js') ?>"></script>
|
|
|
|
|
<script src="<?= base_url('bower_components/toastr/toastr.js') ?>"></script>
|
|
|
|
|
<script src="<?= base_url('dist/js/sweetalert2.js') ?>"></script>
|
2020-08-10 18:11:05 +00:00
|
|
|
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment-with-locales.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/plug-ins/1.10.19/sorting/datetime-moment.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/plug-ins/1.10.20/dataRender/datetime.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/dataTables.buttons.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.html5.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.print.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="https://cdn.datatables.net/buttons/1.6.2/js/buttons.colVis.min.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
$(function () {
|
2022-04-18 11:39:19 +00:00
|
|
|
|
const lang = "<?= $this->session->userdata('site_lang') ?>";
|
2020-08-10 18:11:05 +00:00
|
|
|
|
const format = lang === 'french' ? 'fr' : 'en';
|
|
|
|
|
moment.updateLocale(moment.locale(format), {invalidDate: ""});
|
2020-08-06 06:26:28 +00:00
|
|
|
|
|
2020-08-10 18:11:05 +00:00
|
|
|
|
$('#example1').DataTable({
|
2020-09-28 15:44:45 +00:00
|
|
|
|
"aaSorting": [[6, "desc"]],
|
2020-08-10 18:11:05 +00:00
|
|
|
|
"columnDefs": [{
|
2020-09-28 15:44:45 +00:00
|
|
|
|
targets: 6,
|
2020-08-10 18:11:05 +00:00
|
|
|
|
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format)
|
|
|
|
|
}]
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2020-08-06 06:26:28 +00:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
toastr.options.closeButton = true;
|
|
|
|
|
toastr.options.closeMethod = 'fadeOut';
|
|
|
|
|
toastr.options.closeDuration = 5000;
|
|
|
|
|
toastr.options.closeEasing = 'swing';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('#saveLimit').click(function () {
|
|
|
|
|
const limit_min = parseFloat($('#limit_min').val());
|
|
|
|
|
const limit_max = parseFloat($('#limit_max').val());
|
|
|
|
|
const network_id = $(this).data('network-id');
|
|
|
|
|
|
|
|
|
|
if (limit_max > limit_min) {
|
|
|
|
|
if ($('#limitForm')[0].checkValidity()) {
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
2022-04-18 11:39:19 +00:00
|
|
|
|
url: '<?= base_url('Hyperviseur_dash/saveCreditLimit')?>',
|
2020-08-06 06:26:28 +00:00
|
|
|
|
type: 'POST',
|
|
|
|
|
dataType: 'json',
|
|
|
|
|
data: {
|
|
|
|
|
"limit_min": limit_min,
|
|
|
|
|
"limit_max": limit_max,
|
|
|
|
|
"id_network": network_id,
|
|
|
|
|
},
|
|
|
|
|
success: function (data) {
|
|
|
|
|
if (data == '200') {
|
|
|
|
|
Swal.fire({
|
|
|
|
|
icon: 'success',
|
2022-04-18 11:39:19 +00:00
|
|
|
|
title: "<?= $this->lang->line('update_credit_limit')?>",
|
|
|
|
|
text: "<?= $this->lang->line('informations_updated')?>",
|
2020-08-06 06:26:28 +00:00
|
|
|
|
timer: 3000
|
|
|
|
|
}).then(() => {
|
|
|
|
|
location.reload();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
} else {
|
2022-04-18 11:39:19 +00:00
|
|
|
|
toastr.error("<?= $this->lang->line('error_message')?>", "<?= $this->lang->line('request_error')?>");
|
2020-08-06 06:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
error: function (resultat, statut, error) {
|
|
|
|
|
console.log(resultat + " " + error);
|
2022-04-18 11:39:19 +00:00
|
|
|
|
toastr.error("<?= $this->lang->line('error_message')?>", "<?= $this->lang->line('request_error')?>");
|
2020-08-06 06:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$('#limitForm')[0].reportValidity();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-04-18 11:39:19 +00:00
|
|
|
|
toastr.error("<?= $this->lang->line('credit_limit_rule')?>", "<?= $this->lang->line('request_error')?>");
|
2020-08-06 06:26:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<!-- Page script -->
|
2020-08-10 18:11:05 +00:00
|
|
|
|
<!--<script src="--><?php //echo base_url('dist/js/custom.js') ?><!--"></script>-->
|