| 66 |
efrain |
1 |
<?php
|
|
|
2 |
use LeadersLinked\Model\CompanyService;
|
|
|
3 |
use LeadersLinked\Model\Company;
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
//$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
|
|
|
7 |
//$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
$this->inlineScript()->captureStart();
|
|
|
11 |
echo <<<JS
|
|
|
12 |
jQuery( document ).ready(function( $ ) {
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
});
|
|
|
18 |
JS;
|
|
|
19 |
$this->inlineScript()->captureEnd();
|
|
|
20 |
?>
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
|
24 |
<!-- Content Header (Page header) -->
|
|
|
25 |
<section class="content-header">
|
|
|
26 |
<div class="container-fluid">
|
|
|
27 |
<div class="row mb-2">
|
|
|
28 |
<div class="col-sm-12">
|
|
|
29 |
<h1>LABEL_TEST</h1>
|
|
|
30 |
</div>
|
|
|
31 |
</div>
|
|
|
32 |
</div><!-- /.container-fluid -->
|
|
|
33 |
</section>
|
|
|
34 |
|
|
|
35 |
<section class="content">
|
|
|
36 |
<div class="container-fluid">
|
|
|
37 |
<div class="row">
|
|
|
38 |
<div class="col-md-12 col-sm-12">
|
| 79 |
steven |
39 |
<!-- Content -->
|
|
|
40 |
<div class="row" id="row-forms">
|
|
|
41 |
<div class="col-md-12">
|
|
|
42 |
<!-- Begin: life time stats -->
|
|
|
43 |
<div class="portlet box blue-dark">
|
|
|
44 |
<div class="portlet-title ">
|
|
|
45 |
<div class="caption">
|
|
|
46 |
<i class="fa fa-dot-circle-o"></i>AutoEvaluacion
|
|
|
47 |
</div>
|
|
|
48 |
<div class="actions portlet-toggler">
|
|
|
49 |
<button class="btn blue btn-add-form" data-toggle="tooltip" title="Add Form">
|
|
|
50 |
<i class="fa fa-plus"></i> Add
|
|
|
51 |
</button>
|
|
|
52 |
<button class="btn red hide btn-delete-forms" data-action="delete" data-toggle="tooltip" title="Delete Selected"><i class="fa fa-minus"></i> Delete Selected</button>
|
|
|
53 |
<div class="btn-group"></div>
|
|
|
54 |
</div>
|
|
|
55 |
|
|
|
56 |
</div>
|
|
|
57 |
<div class="portlet-body portlet-toggler">
|
|
|
58 |
<table id="table-form" class="table table-striped table-bordered table-hover">
|
|
|
59 |
|
|
|
60 |
</table>
|
|
|
61 |
</div>
|
|
|
62 |
<div class="portlet-body portlet-toggler pageform" style="display:none;"></div>
|
|
|
63 |
</div>
|
|
|
64 |
</div>
|
|
|
65 |
</div>
|
| 66 |
efrain |
66 |
</div>
|
|
|
67 |
</div>
|
|
|
68 |
|
|
|
69 |
</div>
|
|
|
70 |
</section>
|