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 -->
|
80 |
steven |
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>
|
79 |
steven |
55 |
|
80 |
steven |
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 |
<!-- End Content -->
|
|
|
67 |
<!-- Row Edit -->
|
81 |
steven |
68 |
<div class="row" id="row-edit">
|
80 |
steven |
69 |
<div class="col-xs-12 col-md-12">
|
|
|
70 |
<form action="#" name="form-main" id="form-main">
|
|
|
71 |
<input type="hidden" name="form-id" id="form-id" value="0" />
|
|
|
72 |
<input type="hidden" name="form-continue" id="form-continue" value="0" />
|
|
|
73 |
<div class="form-group">
|
|
|
74 |
<label for="form-name">Name</label>
|
|
|
75 |
<input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
|
79 |
steven |
76 |
</div>
|
80 |
steven |
77 |
<div class="form-group">
|
|
|
78 |
<label for="form-description">Description</label>
|
|
|
79 |
<!-- ckeditor -->
|
|
|
80 |
<textarea name="form-description" id="form-description" rows="5" class="ckeditor form-control"></textarea>
|
|
|
81 |
</div>
|
|
|
82 |
<div class="form-group">
|
|
|
83 |
<label for="form-text">Text</label>
|
|
|
84 |
<!-- ckeditor -->
|
|
|
85 |
<textarea name="form-text" id="form-text" rows="5" class="ckeditor form-control"></textarea>
|
79 |
steven |
86 |
</div>
|
80 |
steven |
87 |
<div class="form-group">
|
|
|
88 |
<label for="form-language">Language</label>
|
|
|
89 |
<select name="form-language" id="form-language" class="form-control">
|
|
|
90 |
<option value="EN">English</option>
|
|
|
91 |
<option value="SP">Spanish</option>
|
|
|
92 |
</select>
|
|
|
93 |
</div>
|
|
|
94 |
<div class="form-group">
|
|
|
95 |
<label for="form-status">Status</label>
|
|
|
96 |
<select name="form-status" id="form-status" class="form-control">
|
|
|
97 |
<option value="D">Inactive</option>
|
|
|
98 |
<option value="A">Active</option>
|
|
|
99 |
</select>
|
|
|
100 |
</div>
|
|
|
101 |
<br/>
|
|
|
102 |
<div class="row">
|
|
|
103 |
<div class="col-xs-12 col-md-12 text-right">
|
|
|
104 |
<button class="btn btn-primary" id="btn-add-section" data-toggle="tooltip" title="New Section"><i class="fa fa-plus" aria-hidden="true"></i> New Section</button>
|
|
|
105 |
</div>
|
79 |
steven |
106 |
</div>
|
80 |
steven |
107 |
<br>
|
|
|
108 |
<div class="row">
|
|
|
109 |
<div class="col-xs-12 col-md-12">
|
|
|
110 |
<div class="panel-group" id="accordion">
|
|
|
111 |
|
|
|
112 |
|
|
|
113 |
|
|
|
114 |
</div>
|
|
|
115 |
</div>
|
|
|
116 |
</div>
|
|
|
117 |
|
|
|
118 |
|
|
|
119 |
<div class="form-group">
|
|
|
120 |
<button type="button" class="btn btn-info btn-form-save-continue">Save & Continue</button>
|
|
|
121 |
<button type="button" class="btn btn-primary btn-form-save-close">Save & Close</button>
|
|
|
122 |
<button type="button" class="btn btn-secondary btn-edit-cancel">Cancel</button>
|
|
|
123 |
</div>
|
|
|
124 |
</form>
|
79 |
steven |
125 |
</div>
|
|
|
126 |
</div>
|
80 |
steven |
127 |
<!-- End Row Edit -->
|
82 |
steven |
128 |
<!-- Modals -->
|
|
|
129 |
<!-- Senction Modal -->
|
|
|
130 |
<div id="modal-section" class="modal" tabindex="-1" role="dialog">
|
|
|
131 |
<div class="modal-dialog" role="document">
|
|
|
132 |
<form action="#" name="form-section" id="form-section">
|
|
|
133 |
<input type="hidden" name="section-slug" id="section-slug" value="" />
|
|
|
134 |
<div class="modal-content">
|
|
|
135 |
<div class="modal-header">
|
|
|
136 |
<h4 class="modal-title">Modal title</h4>
|
|
|
137 |
<!-- <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
138 |
<span aria-hidden="true">×</span>
|
|
|
139 |
</button> -->
|
|
|
140 |
</div>
|
|
|
141 |
<div class="modal-body">
|
|
|
142 |
<div class="form-group">
|
|
|
143 |
<label for="section-name">Name</label>
|
|
|
144 |
<input type="text" name="section-name" id="section-name" class="form-control" maxlength="50" value="" />
|
|
|
145 |
</div>
|
|
|
146 |
<div class="form-group">
|
|
|
147 |
<label for="section-text">Text</label>
|
|
|
148 |
<!-- ckeditor -->
|
|
|
149 |
<textarea name="section-text" id="section-text" rows="5" class="ckeditor form-control"></textarea>
|
|
|
150 |
</div>
|
|
|
151 |
<div class="form-group">
|
|
|
152 |
<label for="section-value">Value</label>
|
|
|
153 |
<input type="text" name="section-value" id="section-value" class="form-control" value="0" />
|
|
|
154 |
</div>
|
|
|
155 |
</div>
|
|
|
156 |
<div class="modal-footer">
|
|
|
157 |
<button type="submit" class="btn btn-primary">Save</button>
|
|
|
158 |
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
|
|
159 |
</div>
|
|
|
160 |
</div>
|
|
|
161 |
</form>
|
|
|
162 |
</div>
|
|
|
163 |
</div>
|
|
|
164 |
<!-- End Modal Section -->
|
|
|
165 |
<!-- Question Modal -->
|
|
|
166 |
<div id="modal-question" class="modal" tabindex="-1" role="dialog">
|
|
|
167 |
<div class="modal-dialog" role="document">
|
|
|
168 |
<form action="#" name="form-question" id="form-question">
|
|
|
169 |
<input type="hidden" name="question-section" id="question-section" />
|
|
|
170 |
<input type="hidden" name="question-slug" id="question-slug" />
|
|
|
171 |
<div class="modal-content">
|
|
|
172 |
<div class="modal-header">
|
|
|
173 |
<h4 class="modal-title">Add Question</h4>
|
|
|
174 |
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
175 |
<span aria-hidden="true">×</span>
|
|
|
176 |
</button>
|
|
|
177 |
</div>
|
|
|
178 |
<div class="modal-body">
|
|
|
179 |
<div class="form-group">
|
|
|
180 |
<label for="question-text">Text</label>
|
|
|
181 |
<!-- ckeditor -->
|
|
|
182 |
<textarea name="question-text" id="question-text" rows="5" class="ckeditor form-control"></textarea>
|
|
|
183 |
</div>
|
|
|
184 |
<div class="form-group">
|
|
|
185 |
<label for="question-value">Value</label>
|
|
|
186 |
<input type="text" name="question-value" id="question-value" class="form-control" />
|
|
|
187 |
</div>
|
|
|
188 |
<div class="form-group">
|
|
|
189 |
<label for="question-type">Type</label>
|
|
|
190 |
<select name="question-type" id="question-type" class="form-control">
|
|
|
191 |
<option value="open">Open</option>
|
|
|
192 |
<option value="simple">Simple</option>
|
|
|
193 |
<option value="multiple">Multiple</option>
|
|
|
194 |
<option value="rating-open">Rating Open</option>
|
|
|
195 |
<option value="rating-range">Rating Range</option>
|
|
|
196 |
</select>
|
|
|
197 |
</div>
|
|
|
198 |
<div class="form-group">
|
|
|
199 |
<label for="question-max-length">MaxLength</label>
|
|
|
200 |
<input type="text" name="question-max-length" id="question-max-length" class="form-control" />
|
|
|
201 |
</div>
|
|
|
202 |
<div class="form-group">
|
|
|
203 |
<label for="question-multiline">Multiline</label>
|
|
|
204 |
<select name="question-multiline" id="question-multiline" class="form-control">
|
|
|
205 |
<option value="1">Yes</option>
|
|
|
206 |
<option value="0">No</option>
|
|
|
207 |
</select>
|
|
|
208 |
</div>
|
|
|
209 |
<div class="form-group">
|
|
|
210 |
<label for="question-range">Range</label>
|
|
|
211 |
<select name="question-range" id="question-range" class="form-control">
|
|
|
212 |
<option value="10">1-10</option>
|
|
|
213 |
<option value="6">1-6</option>
|
|
|
214 |
<option value="5">1-5</option>
|
|
|
215 |
</select>
|
|
|
216 |
</div>
|
|
|
217 |
</div>
|
|
|
218 |
<div class="modal-footer">
|
|
|
219 |
<button type="submit" class="btn btn-primary">Save</button>
|
|
|
220 |
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
|
|
221 |
</div>
|
|
|
222 |
</div>
|
|
|
223 |
</form>
|
|
|
224 |
</div>
|
|
|
225 |
</div>
|
|
|
226 |
<!-- End Modal Question -->
|
|
|
227 |
<!-- End Modals -->
|
66 |
efrain |
228 |
</div>
|
|
|
229 |
</div>
|
|
|
230 |
</div>
|
|
|
231 |
</section>
|