Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15387 | Rev 15571 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15387 Rev 15570
Línea 11... Línea 11...
11
 
11
 
12
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
12
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
13
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
13
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
Línea -... Línea 14...
-
 
14
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.js'));
-
 
15
 
-
 
16
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
-
 
17
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));
-
 
18
 
-
 
19
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
-
 
20
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
-
 
21
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
14
$this->inlineScript()->appendFile($this->basePath('plugins/jsrender/jsrender.js'));
22
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));
15
 
23
 
Línea 16... Línea 24...
16
$this->headStyle()->captureStart();
24
$this->headStyle()->captureStart();
Línea 150... Línea 158...
150
$this->inlineScript()->captureEnd();
158
$this->inlineScript()->captureEnd();
151
?>
159
?>
Línea 152... Línea 160...
152
 
160
 
153
<!-- Content Header (Page header) -->
161
<!-- Content Header (Page header) -->
154
<section class="content-header">
162
<section class="content-header">
155
	<div class="container-fluid">
163
    <div class="container-fluid">
156
    	<div class="row mb-2">
164
        <div class="row mb-2">
157
        	<div class="col-sm-12">
165
            <div class="col-sm-12">
158
            	<h1>LABEL_REPORTS_USERS_BLOCKED</h1>
166
                <h1>LABEL_REPORTS_USERS_BLOCKED</h1>
159
			</div>
167
            </div>
160
		</div>
168
        </div>
161
	</div><!-- /.container-fluid -->
169
    </div><!-- /.container-fluid -->
Línea 162... Línea 170...
162
</section>
170
</section>
163
 
171
 
164
<section class="content">
172
<section class="content">
165
	<div class="container-fluid">
173
    <div class="container-fluid">
166
    	<div class="row">
174
        <div class="row">
167
        	<div class="col-12">
175
            <div class="col-12">
168
				<div class="card">        
176
                <div class="card">
169
					<div class="card-header">
177
                    <div class="card-header">
170
						<div class="col-md-12 col-sm-12">
178
                        <div class="col-md-12 col-sm-12">
171
                                <div style="float:right;">
179
                            <div style="float:right;">
172
                                    <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
180
                                <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
173
                                    <?php if($allowDownload) :  ?>
181
                                <?php if ($allowDownload) :  ?>
174
                                    
182
 
175
                					<button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD  </button>
183
                                    <button type="button" class="btn btn-info btn-download"><i class="fa fa-download"></i> LABEL_DOWNLOAD </button>
176
                					<?php endif;?>
184
                                <?php endif; ?>
177
                                </div>
185
                            </div>
178
                     	</div>
186
                        </div>
179
					</div>            
187
                    </div>
180
					<div class="card-body">
188
                    <div class="card-body">
181
        	    		<table id="gridTable" class="table   table-hover">
189
                        <table id="gridTable" class="table   table-hover">
182
                      		<thead>
190
                            <thead>
183
        						<tr>
191
                                <tr>
184
									<th style="width: 25%">LABEL_FIRST_NAME</th>
192
                                    <th style="width: 25%">LABEL_FIRST_NAME</th>
185
									<th style="width: 25%">LABEL_LAST_NAME</th>
193
                                    <th style="width: 25%">LABEL_LAST_NAME</th>
Línea 186... Línea 194...
186
									<th style="width: 30%">LABEL_EMAIL</th>
194
                                    <th style="width: 30%">LABEL_EMAIL</th>
187
       								<th style="width: 20%">LABEL_REPORTS_LAST_ACTIVITY</th>
195
                                    <th style="width: 20%">LABEL_REPORTS_LAST_ACTIVITY</th>
188
 
196
 
189
 
197
 
190
                                </tr>
198
                                </tr>
191
                       		</thead>
199
                            </thead>
192
                         	<tbody>
200
                            <tbody>
193
                         	</tbody>
201
                            </tbody>
194
                    	</table>
202
                        </table>
195
                   	</div>
203
                    </div>
196
          		</div>
204
                </div>
197
           	</div>     
205
            </div>
Línea 198... Línea 206...
198
        </div>          
206
        </div>
199
 	</div>
207
    </div>
Línea 227... Línea 235...
227
    <tr>
235
    <tr>
228
        <td colspan="4">
236
        <td colspan="4">
229
            LABEL_NOT_RECORDS_FOUND
237
            LABEL_NOT_RECORDS_FOUND
230
        </td>
238
        </td>
231
    </tr> 
239
    </tr> 
232
</script>
240
</script>
233
 
-
 
234
 
-
 
235
 
-
 
236
 
-
 
237
	
-
 
238
 
-
 
239
241