Línea 34... |
Línea 34... |
34 |
|
34 |
|
35 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
|
35 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
|
36 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
|
36 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
|
Línea -... |
Línea 37... |
- |
|
37 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
|
37 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
|
38 |
|
- |
|
39 |
|
Línea 38... |
Línea 40... |
38 |
|
40 |
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
|
39 |
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
|
41 |
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
|
- |
|
42 |
|
- |
|
43 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
|
Línea 40... |
Línea 44... |
40 |
|
44 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
|
41 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
|
45 |
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
|
Línea 828... |
Línea 832... |
828 |
?>
|
832 |
?>
|
Línea 829... |
Línea 833... |
829 |
|
833 |
|
- |
|
834 |
|
830 |
|
835 |
|
831 |
|
836 |
<div class="container">
|
- |
|
837 |
<div class= "card">
|
- |
|
838 |
<div class="card-header">
|
- |
|
839 |
<h6 class="card-title">LABEL_USERS_FOR_COMPANY</h6>
|
- |
|
840 |
</div>
|
832 |
<div class="container">
|
841 |
<div class="card-body">
|
833 |
<div class="card-body">
|
842 |
|
834 |
<h6 class="card-title">LABEL_USERS_FOR_COMPANY</h6>
|
843 |
|
835 |
<form name="form-filter" id="form-filter">
|
844 |
<form name="form-filter" id="form-filter">
|
836 |
<div class="row">
|
845 |
<div class="row">
|
837 |
<div class="col-12 mt-3">
|
846 |
<div class="col-12 mt-3">
|
838 |
<label for="status">LABEL_STATUS</label>
|
847 |
<label for="status">LABEL_STATUS</label>
|
839 |
<select id="status" name="status" class="form-control">
|
848 |
<select id="status" name="status" class="form-control">
|
840 |
<option value="">LABEL_ALL</option>
|
849 |
<option value="">LABEL_ALL</option>
|
841 |
<option value="<?php echo CompanyUser::STATUS_PENDING ?>">LABEL_PENDING</option>
|
850 |
<option value="<?php echo CompanyUser::STATUS_PENDING ?>">LABEL_PENDING</option>
|
842 |
<option value="<?php echo CompanyUser::STATUS_ACCEPTED ?>">LABEL_ACCEPTED</option>
|
851 |
<option value="<?php echo CompanyUser::STATUS_ACCEPTED ?>">LABEL_ACCEPTED</option>
|
843 |
<option value="<?php echo CompanyUser::STATUS_ADMIN_WILL_ADD ?>">LABEL_ADMIN_WILL_ADD</option>
|
852 |
<option value="<?php echo CompanyUser::STATUS_ADMIN_WILL_ADD ?>">LABEL_ADMIN_WILL_ADD</option>
|
844 |
<option value="<?php echo CompanyUser::STATUS_SENT ?>">LABEL_INVITED</option>
|
853 |
<option value="<?php echo CompanyUser::STATUS_SENT ?>">LABEL_INVITED</option>
|
845 |
<option value="<?php echo CompanyUser::STATUS_CANCELLED ?>">LABEL_CANCELLED</option>
|
854 |
<option value="<?php echo CompanyUser::STATUS_CANCELLED ?>">LABEL_CANCELLED</option>
|
846 |
<option value="<?php echo CompanyUser::STATUS_REJECTED ?>">LABEL_REJECTED</option>
|
855 |
<option value="<?php echo CompanyUser::STATUS_REJECTED ?>">LABEL_REJECTED</option>
|
847 |
</select>
|
856 |
</select>
|
848 |
</div>
|
857 |
</div>
|
849 |
</div>
|
858 |
</div>
|
850 |
</form>
|
859 |
</form>
|
851 |
<div class="row">
|
860 |
<div class="row">
|
852 |
<div class="col-12 mt-3">
|
861 |
<div class="col-12 mt-3">
|
853 |
<table id="gridTable" class="table table-bordered">
|
862 |
<table id="gridTable" class="table table-bordered">
|
854 |
<thead>
|
863 |
<thead>
|
855 |
<tr>
|
864 |
<tr>
|
856 |
<th>LABEL_FIRST_NAME</th>
|
865 |
<th>LABEL_FIRST_NAME</th>
|
857 |
<th>LABEL_LAST_NAME</th>
|
866 |
<th>LABEL_LAST_NAME</th>
|
858 |
<th>LABEL_EMAIL</th>
|
867 |
<th>LABEL_EMAIL</th>
|
859 |
<th>LABEL_DETAILS</th>
|
868 |
<th>LABEL_DETAILS</th>
|
860 |
<th>LABEL_ACTIONS</th>
|
869 |
<th>LABEL_ACTIONS</th>
|
861 |
</tr>
|
870 |
</tr>
|
862 |
</thead>
|
871 |
</thead>
|
- |
|
872 |
<tbody>
|
863 |
<tbody>
|
873 |
</tbody>
|
- |
|
874 |
</table>
|
- |
|
875 |
</div>
|
- |
|
876 |
</div>
|
- |
|
877 |
</div>
|
- |
|
878 |
<div class="card-footer text-right">
|
- |
|
879 |
<button type="button" class="btn btn-sm btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH</button>
|
- |
|
880 |
<?php if ($allowUpload) : ?>
|
- |
|
881 |
<button type="button" class="btn btn-sm btn-primary btn-upload"><i class="fa fa-upload"></i> LABEL_UPLOAD </button>
|
- |
|
882 |
<?php endif; ?>
|
864 |
</tbody>
|
883 |
<?php if ($allowInvite) : ?>
|
865 |
</table>
|
- |
|
866 |
</div>
|
- |
|
867 |
</div>
|
- |
|
868 |
</div>
|
- |
|
869 |
<div class="card-footer text-right">
|
- |
|
870 |
<button type="button" class="btn btn-sm btn-info btn-refresh"><i class="fa fa-refresh"></i></button>
|
- |
|
871 |
<?php if ($allowUpload) : ?>
|
- |
|
872 |
<button type="button" class="btn btn-sm btn-primary btn-upload"><i class="fa fa-upload"></i> LABEL_UPLOAD </button>
|
- |
|
873 |
<?php endif; ?>
|
- |
|
874 |
<?php if ($allowInvite) : ?>
|
884 |
<button type="button" class="btn btn-sm btn-primary btn-invite"><i class="fa fa-plus"></i> LABEL_INVITE </button>
|
875 |
<button type="button" class="btn btn-sm btn-primary btn-invite"><i class="fa fa-plus"></i> LABEL_INVITE </button>
|
885 |
<?php endif; ?>
|
Línea 876... |
Línea 886... |
876 |
<?php endif; ?>
|
886 |
</div>
|
877 |
</div>
|
887 |
</div>
|