Server IP : 192.185.129.71 / Your IP : 3.14.7.99 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/views/admin/reports/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <?php init_head(); ?> <div id="wrapper"> <div class="content"> <div class="row"> <div class="col-md-12"> <p class="text-info inline-block" data-placement="bottom" data-toggle="tooltip" data-title="<?php echo _l('leads_report_converted_notice'); ?>"><i class="fa-regular fa-circle-question"></i></p> <div class="panel_s"> <div class="panel-body"> <a href="<?php echo admin_url('reports/leads'); ?>" class="btn btn-success"><?php echo _l('switch_to_staff_report'); ?></a> </div> </div> </div> <div class="col-md-12 animated fadeIn"> <div class="panel_s"> <div class="panel-body"> <?php echo form_open($this->uri->uri_string() . '?type=staff'); ?> <div class="row"> <div class="col-md-4"> <?php echo render_date_input('staff_report_from_date', 'from_date', $this->input->post('staff_report_from_date')); ?> </div> <div class="col-md-4"> <?php echo render_date_input('staff_report_to_date', 'to_date', $this->input->post('staff_report_to_date')); ?> </div> <div class="col-md-4 text-left"> <button type="submit" class="btn btn-primary label-margin"><?php echo _l('generate'); ?></button> </div> </div> <?php echo form_close(); ?> <hr /> <div class="relative" style="max-height:380px"> <canvas class="leads-staff-report mtop20" height="380" id="leads-staff-report"></canvas> </div> </div> </div> </div> </div> </div> </div> <?php init_tail(); ?> <script> window.onload = function(){ new Chart($('#leads-staff-report'),{ data:<?php echo $leads_staff_report; ?>, type:'bar', options:{responsive:true,maintainAspectRatio:false} }) }; </script> </body> </html>