37 lines
835 B
PHP
37 lines
835 B
PHP
<!-- PAGE FOOTER -->
|
|
<div class="page-footer">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-6">
|
|
<span class="txt-color-white"><?php echo $this->config->item('pw_client');?> <span class="hidden-xs"> - Progiweb.ca</span> © 2017-2024 <?php echo $this->config->item('pw_verssion').' '.$this->config->item('pw_no_verssion');;?></span>
|
|
</div>
|
|
|
|
<div class="col-xs-6 col-sm-6 text-right hidden-xs">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<!-- END PAGE FOOTER -->
|
|
|
|
<?php
|
|
|
|
if (isset($error['type'])){
|
|
?>
|
|
<script>
|
|
|
|
toastr.<?php echo $error['type'] ?>('<?php echo $error['message'] ?>')
|
|
</script>
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
<script>
|
|
document.querySelectorAll('select[name="det_etape"]').forEach(function (select) {
|
|
select.addEventListener('change', function () {
|
|
this.form.submit();
|
|
});
|
|
});
|
|
</script>
|