{"common\/app\/panel-content\/custom\/invoice-view-panel":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <div class=\"form-block invoice-wrapper\" ng-class=\"{'no-footer': !vm.panelState.structure.options.form_buttons}\">\n        <div class=\"invoice-header\">\n            <div style=\"padding: 0 1rem;\">\n                <div><b>Details<\/b><\/div>\n                <table class=\"table-column-info\">\n                    <tr>\n                        <td>\n                            Recurrence Type\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.invoice_recurrence_type.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr>\n                        <td>\n                            First Invoice Date\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.first_invoice_date.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr>\n                        <td>\n                            First Due Date\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.first_invoice_due_date.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr>\n                        <td>\n                            Credit Terms\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.credit_terms.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr ng-if=\"vm.panelState.model.invoice_info.total_revenue\">\n                        <td>\n                            Lifetime Revenue\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.total_revenue.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr ng-if=\"vm.panelState.model.invoice_info.invoice_cycle\">\n                        <td>\n                            Invoice Cycles\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.invoice_cycle.total_count\"><\/div>\n                        <\/td>\n                    <\/tr>\n                <\/table>\n            <\/div>\n        <\/div>\n        <div class=\"invoice-content\">\n            <div kendo-tab-strip>\n                <ul>\n                    <li class=\"k-state-active\">Invoice Details<\/li>\n                    <li ng-show=\"vm.panelState.model.future_invoices.lines.length\">\n                        Invoice Cycle(s)\n                    <\/li>\n                <\/ul>\n                <div class=\"invoice-content-table\">\n                    <table style=\"width:100%;\">\n                        <colgroup>\n                            <col width=\"75%\"\/>\n                            <col\/>\n                        <\/colgroup>\n                        <thead>\n                        <tr>\n                            <th class=\"text-small text-uppercase\">Description<\/th>\n                            <th class=\"text-small text-uppercase\">Amount<\/th>\n                        <\/tr>\n                        <\/thead>\n                        <tbody>\n                        <tr ng-repeat=\"lineItem in vm.panelState.model.invoice_lines.lines\"\n                            style=\"vertical-align: top;\">\n                            <td>\n                                <div class=\"text-small text-bold\" ng-bind=\"lineItem.item_name\"><\/div>\n                                <div class=\"text-small text-muted mt-5\" ng-if=\"lineItem.item_description\"\n                                     ng-bind=\"lineItem.item_description\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small text-bold\" ng-bind=\"lineItem.item_amount.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr>\n                            <td>\n                                <div class=\"text-bold text-small\">Total<\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-bold text-small\"\n                                     ng-bind=\"vm.panelState.model.invoice_lines.total.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <\/tbody>\n                    <\/table>\n                <\/div>\n                <div class=\"invoice-content-table\">\n                    <table>\n                        <colgroup>\n                            <col width=\"90\"\/>\n                            <col width=\"150\"\/>\n                            <col width=\"120\"\/>\n                            <col width=\"120\"\/>\n                        <\/colgroup>\n                        <thead>\n                        <tr>\n                            <th class=\"text-small text-uppercase\">Cycle #<\/th>\n                            <th class=\"text-small text-uppercase\">Total Amount<\/th>\n                            <th class=\"text-small text-uppercase\">Invoice Date<\/th>\n                            <th class=\"text-small text-uppercase\">Due Date<\/th>\n                                                        <th class=\"text-small text-uppercase\">Invoice Id<\/th>\n                            <th class=\"text-small text-uppercase\">Payment Status<\/th>\n                                                    <\/tr>\n                        <\/thead>\n                        <tbody>\n                        <tr ng-repeat=\"cycleItem in vm.panelState.model.future_invoices.lines\">\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.invoice_number\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.total.formatted\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.invoice_date\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.due_date\"><\/div>\n                            <\/td>\n                                                        <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.invoice_id\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\">\n                                    <sod-status-label status-text=\"cycleItem.invoice_payment_status.label\"\n                                                      status-key=\"cycleItem.invoice_payment_status.color\"><\/sod-status-label>\n                                <\/div>\n                            <\/td>\n\n                                                    <\/tr>\n                        <\/tbody>\n                    <\/table>\n                <\/div>\n            <\/div>\n\n        <\/div>\n        <div class=\"invoice-footer\">\n\n        <\/div>\n        <div>\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"\n                               get-model=\"vm.panelState.getModel\"\n                               set-model=\"vm.panelState.setModel\"><\/fb-form-generator>\n        <\/div>\n\n    <\/div>\n\n    <div class=\"form-footer\" ng-if=\"vm.panelState.structure.options.form_buttons\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.options.form_buttons\" type=\"'inline'\"\n                                  name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/custom\/invoice-detail":"<div style=\"height: 100%; overflow-y: scroll; background-color: white;\">\n    <div class=\"dialog-details-items\" style=\"padding: 1rem 0;\">\n        <div class=\"form-block invoice-wrapper\">\n            <div class=\"invoice-header\">\n                <div style=\"padding: 0 1rem;\">\n                    <table class=\"table-column-info\">\n                        <tr>\n                            <td>\n                                Recurrence Type\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.invoice_recurrence_type\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr>\n                            <td>\n                                Invoice Id\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.ref_id\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr>\n                            <td>\n                                Invoice Date\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.dates.invoice_date\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr>\n                            <td>\n                                Due Date\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.dates.due_date\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr>\n                            <td>\n                                Credit Terms\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.credit_terms.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr ng-if=\"vm.panelState.model.invoice_info.total_revenue\">\n                            <td>\n                                Lifetime Revenue\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.total_revenue.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr ng-if=\"vm.panelState.model.invoice_info.invoice_cycle\">\n                            <td>\n                                Invoice Cycles\n                            <\/td>\n                            <td>\n                                <div ng-bind=\"vm.panelState.model.invoice_info.invoice_cycle.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                    <\/table>\n                <\/div>\n            <\/div>\n            <div class=\"invoice-content\">\n                <div kendo-tab-strip>\n                    <ul>\n                        <li class=\"k-state-active\">Invoice Details<\/li>\n                        <li ng-show=\"vm.panelState.model.other_invoices.lines.length\">Invoice Cycle(s)<\/li>\n                    <\/ul>\n                    <div class=\"invoice-content-table\">\n                        <table style=\"width:100%\">\n                            <colgroup>\n                                <col width=\"75%\"\/>\n                                <col\/>\n                            <\/colgroup>\n                            <thead>\n                            <tr>\n                                <th class=\"text-small text-uppercase\">Description<\/th>\n                                <th class=\"text-small text-uppercase\">Price<\/th>\n                            <\/tr>\n                            <\/thead>\n                            <tbody>\n                            <tr ng-repeat=\"lineItem in vm.panelState.model.invoice_lines.lines\">\n                                <td>\n                                    <div class=\"text-small text-bold\" ng-bind=\"lineItem.item_name\"><\/div>\n                                    <div class=\"text-small text-muted\" ng-if=\"lineItem.item_description\"\n                                         ng-bind=\"lineItem.item_description\"><\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-small text-bold\"\n                                         ng-bind=\"lineItem.item_amount.formatted\"><\/div>\n                                <\/td>\n                            <\/tr>\n                            <tr>\n                                <td>\n                                    <div class=\"text-bold text-small\">Total<\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-bold text-small\"\n                                         ng-bind=\"vm.panelState.model.invoice_lines.total.formatted\"><\/div>\n                                <\/td>\n                            <\/tr>\n                            <\/tbody>\n                        <\/table>\n                    <\/div>\n                    <div class=\"invoice-content-table\">\n                        <table>\n                            <colgroup>\n                                <col width=\"90\"\/>\n                                <col width=\"150\"\/>\n                                <col width=\"120\"\/>\n                                <col width=\"120\"\/>\n                            <\/colgroup>\n                            <thead>\n                            <tr>\n                                <th class=\"text-small text-uppercase\">Cycle #<\/th>\n                                <th class=\"text-small text-uppercase\">Total Amount<\/th>\n                                <th class=\"text-small text-uppercase\">Invoice Date<\/th>\n                                <th class=\"text-small text-uppercase\">Due Date<\/th>\n                                <th class=\"text-small text-uppercase\">Invoice Id<\/th>\n                                <th class=\"text-small text-uppercase\">Payment Status<\/th>\n                            <\/tr>\n                            <\/thead>\n                            <tbody>\n                            <tr ng-repeat=\"cycleItem in vm.panelState.model.other_invoices.lines\">\n                                <td>\n                                    <div class=\"text-small\" ng-bind=\"cycleItem.invoice_number\"><\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-small\" ng-bind=\"cycleItem.total.formatted\"><\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-small\" ng-bind=\"cycleItem.invoice_date\"><\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-small\" ng-bind=\"cycleItem.due_date\"><\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-small\" ng-bind=\"cycleItem.invoice_id\"><\/div>\n                                <\/td>\n                                <td>\n                                    <div class=\"text-small\">\n                                        <sod-status-label status-text=\"cycleItem.invoice_payment_status.label\"\n                                                          status-key=\"cycleItem.invoice_payment_status.color\"><\/sod-status-label>\n                                    <\/div>\n                                <\/td>\n                            <\/tr>\n                            <\/tbody>\n                        <\/table>\n                    <\/div>\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/custom\/invoice-review-panel":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <div class=\"form-block invoice-wrapper\" ng-class=\"{'no-footer': !vm.panelState.structure.options.form_buttons}\">\n        <div class=\"invoice-header\">\n            <div style=\"padding: 0 1rem;\">\n                <div><b>Details<\/b><\/div>\n                <table class=\"table-column-info\">\n                    <tr>\n                        <td>\n                            Recurrence Type\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.invoice_recurrence_type.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr>\n                        <td>\n                            First Invoice Date\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.first_invoice_date.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr>\n                        <td>\n                            First Due Date\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.first_invoice_due_date.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr>\n                        <td>\n                            Credit Terms\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.credit_terms.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr ng-if=\"vm.panelState.model.invoice_info.total_revenue\">\n                        <td>\n                            Lifetime Revenue\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.total_revenue.formatted\"><\/div>\n                        <\/td>\n                    <\/tr>\n                    <tr ng-if=\"vm.panelState.model.invoice_info.invoice_cycle\">\n                        <td>\n                            Invoice Cycles\n                        <\/td>\n                        <td>\n                            <div ng-bind=\"vm.panelState.model.invoice_info.invoice_cycle.total_count\"><\/div>\n                        <\/td>\n                    <\/tr>\n                <\/table>\n            <\/div>\n        <\/div>\n        <div class=\"invoice-content\">\n            <div kendo-tab-strip>\n                <ul>\n                    <li class=\"k-state-active\">Invoice Details<\/li>\n                    <li ng-show=\"vm.panelState.model.future_invoices.lines.length\">\n                        Invoice Cycle(s)\n                    <\/li>\n                <\/ul>\n                <div class=\"invoice-content-table\">\n                    <table style=\"width:100%;\">\n                        <colgroup>\n                            <col width=\"75%\"\/>\n                            <col\/>\n                        <\/colgroup>\n                        <thead>\n                        <tr>\n                            <th class=\"text-small text-uppercase\">Description<\/th>\n                            <th class=\"text-small text-uppercase\">Amount<\/th>\n                        <\/tr>\n                        <\/thead>\n                        <tbody>\n                        <tr ng-repeat=\"lineItem in vm.panelState.model.invoice_lines.lines\"\n                            style=\"vertical-align: top;\">\n                            <td>\n                                <div class=\"text-small text-bold\" ng-bind=\"lineItem.item_name\"><\/div>\n                                <div class=\"text-small text-muted mt-5\" ng-if=\"lineItem.item_description\"\n                                     ng-bind=\"lineItem.item_description\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small text-bold\" ng-bind=\"lineItem.item_amount.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <tr>\n                            <td>\n                                <div class=\"text-bold text-small\">Total<\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-bold text-small\"\n                                     ng-bind=\"vm.panelState.model.invoice_lines.total.formatted\"><\/div>\n                            <\/td>\n                        <\/tr>\n                        <\/tbody>\n                    <\/table>\n                <\/div>\n                <div class=\"invoice-content-table\">\n                    <table>\n                        <colgroup>\n                            <col width=\"90\"\/>\n                            <col width=\"150\"\/>\n                            <col width=\"120\"\/>\n                            <col width=\"120\"\/>\n                        <\/colgroup>\n                        <thead>\n                        <tr>\n                            <th class=\"text-small text-uppercase\">Cycle #<\/th>\n                            <th class=\"text-small text-uppercase\">Total Amount<\/th>\n                            <th class=\"text-small text-uppercase\">Invoice Date<\/th>\n                            <th class=\"text-small text-uppercase\">Due Date<\/th>\n                                                    <\/tr>\n                        <\/thead>\n                        <tbody>\n                        <tr ng-repeat=\"cycleItem in vm.panelState.model.future_invoices.lines\">\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.invoice_number\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.total.formatted\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.invoice_date\"><\/div>\n                            <\/td>\n                            <td>\n                                <div class=\"text-small\" ng-bind=\"cycleItem.due_date\"><\/div>\n                            <\/td>\n                                                    <\/tr>\n                        <\/tbody>\n                    <\/table>\n                <\/div>\n            <\/div>\n\n        <\/div>\n        <div class=\"invoice-footer\">\n\n        <\/div>\n        <div>\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"\n                               get-model=\"vm.panelState.getModel\"\n                               set-model=\"vm.panelState.setModel\"><\/fb-form-generator>\n        <\/div>\n\n    <\/div>\n\n    <div class=\"form-footer\" ng-if=\"vm.panelState.structure.options.form_buttons\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.options.form_buttons\" type=\"'inline'\"\n                                  name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/custom\/scheduler":"<rms-scheduler options=\"vm.panelState.structure.options.scheduler_options\" datasources=\"vm.panelState.structure.options.datasources\" get-model=\"vm.getModel\" refresh=\"vm.refreshScheduler\" reload=\"vm.reloadScheduler\"><\/rms-scheduler>","common\/app\/panel-content\/custom\/pipeline-status-input":"<div class=\"rms-candidate-pipeline-input-wrapper\">\n    <div class=\"input-area\">\n        <div class=\"form-block\">\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"><\/fb-form-generator>\n        <\/div>\n        <div class=\"rms-activities-input-component-wrapper\" ng-show=\"vm.panelState.structure.options.show_email_input\">\n                                    <rms-activity-workflow-pipeline-input options=\"vm.panelState.structure.options\" get-model=\"vm.getModel\"><\/rms-activity-workflow-pipeline-input>\n        <\/div>\n    <\/div>\n    <div class=\"action-area\">\n        <div ng-repeat=\"button in vm.panelState.structure.options.wrapper_form\" style=\"display:inline-block;\">\n            <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/dashboard":"<div class=\"row p-4\">\n    <div class=\"columns small-10\">\n        <sod-charts layout=\"vm.panelState.structure.options.layout\"><\/sod-charts>\n        <pre\n            ng-if=\"vm.panelState.structure.options.other_data.access_token\"\n            ng-bind=\"vm.panelState.structure.options.other_data.access_token | json\"\n            data-access-token=\"<% vm.panelState.structure.options.other_data.access_token %>\"\n        ><\/pre>\n\n        <div class=\"py-4\" ng-if=\"vm.panelState.structure.options.token_info\">\n            <label class=\"label radius p-2\" ng-class=\"{\n                default: !vm.panelState.structure.options.token_info.any_active,\n                success: vm.panelState.structure.options.token_info.my_active,\n            }\">Active Tokens (<%vm.panelState.structure.options.token_info.any_active%>)<\/label>\n            <label class=\"label radius p-2\" ng-class=\"{\n                default: !vm.panelState.structure.options.token_info.any_active,\n                success: vm.panelState.structure.options.token_info.my_active,\n            }\">My Active Tokens (<%vm.panelState.structure.options.token_info.my_active%>)<\/label>\n        <\/div>\n\n        <div class=\"form-footer\" ng-if=\"vm.panelState.structure.options.buttons\">\n            <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.options.buttons\" type=\"'inline'\"><\/fb-field-buttons-wrapper>\n        <\/div>\n    <\/div>\n    <div class=\"columns small-2\">\n        <div class=\"border-1 p-4\">\n            <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.options.controls\" type=\"'inline'\"><\/fb-field-buttons-wrapper>\n        <\/div>\n    <\/div>\n\n\n<\/div>\n\n<div class=\"row p-4\" ng-if=\"vm.panelState.structure.options.other_data.mcf.agg_queue !==undefined\">\n    <div class=\"columns small-10\">\n        <h3>MCF Agg Queue<\/h3>\n        <div class=\"row\">\n            <div class=\"columns small-2\">\n                Count: <%vm.panelState.structure.options.other_data.mcf.agg_queue%>\n            <\/div>\n            <div class=\"columns small-10\" ng-if=\"vm.panelState.structure.options.other_data.mcf.oldest_agg\">\n                Oldest Agg Task: <%vm.panelState.structure.options.other_data.mcf.oldest_agg%>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"row p-4\" ng-if=\"vm.panelState.structure.options.other_data.jobstreet\">\n    <div class=\"columns small-10\">\n        <h3>Jobstreet Aggregation<\/h3>\n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                Successful Aggregation in last 3 hour : <%vm.panelState.structure.options.other_data.jobstreet.successful%>\n            <\/div>\n        <\/div>\n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                Failed Job Aggregation in last 3 hour : <%vm.panelState.structure.options.other_data.jobstreet.failed%>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"row p-4\" ng-if=\"vm.panelState.structure.options.other_data.jobstreet.failed_list\">\n        <div class=\"columns small-10\">\n            <div class=\"row\">\n                <div class=\"columns small-1\">\n                    Agg ID\n                <\/div>\n                <div class=\"columns small-3\">\n                    Last Agg Queued\n                <\/div>\n                <div class=\"columns small-3\">\n                    Last Successful Agg\n                <\/div>\n                <div class=\"columns small-3\">\n                    Posting Start Date\n                <\/div>\n            <\/div>\n            <div class=\"row\" ng-repeat=\"row in vm.panelState.structure.options.other_data.jobstreet.failed_list\">\n                <div class=\"columns small-1\" ng-bind=\"row.id\">\n                <\/div>\n                <div class=\"columns small-3\" ng-bind=\"row.last_agg_queued\">\n                <\/div>\n                <div class=\"columns small-3\" ng-bind=\"row.last_successful_agg\">\n                <\/div>\n                <div class=\"columns small-3\" ng-bind=\"row.posting_start_date\">\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"row p-4\" ng-if=\"vm.panelState.structure.options.other_data.jobstreet_token_health_count\">\n    <div class=\"columns small-10\">\n        <h3>Token Health <\/h3>\n        <div class=\"row\">\n            <div class=\"columns small-3\">\n                Job Portal\n            <\/div>\n            <div class=\"columns small-2\">\n                Healthy\n            <\/div>\n            <div class=\"columns small-2\">\n                Unhealthy\n            <\/div>\n            <div class=\"columns small-2\">\n                Not Linked\n            <\/div>\n            <div class=\"columns small-2\">\n                Others\n            <\/div>\n        <\/div>\n        <div class=\"row\" ng-repeat=\"row in vm.panelState.structure.options.other_data.jobstreet_token_health_count\">\n            <div class=\"columns small-3\" ng-bind=\"row.job_portal_name\">\n            <\/div>\n            <div class=\"columns small-2\" ng-bind=\"row.healthy\">\n            <\/div>\n            <div class=\"columns small-2\" ng-bind=\"row.unhealthy\">\n            <\/div>\n            <div class=\"columns small-2\" ng-bind=\"row.not_linked\">\n            <\/div>\n            <div class=\"columns small-2\" ng-bind=\"row.others\">\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"row p-4\"  ng-if=\"vm.panelState.structure.options.other_data.jobstreet_token_health\">\n    <div class=\"columns small-10\">\n        <h3 >Accounts with Active Job Ads needing to be signed in <\/h3>\n        <div class=\"row\">\n            <div class=\"columns small-1 text\">\n                ID\n            <\/div>\n            <div class=\"columns small-3\">\n                Tms Customer\n            <\/div>\n            <div class=\"columns small-3\">\n                Username\n            <\/div>\n            <div class=\"columns small-1\">\n                Token Health\n            <\/div>\n            <div class=\"columns small-2\">\n                Job Portal\n            <\/div>\n            <div class=\"columns small-2\">\n                Last Posting Date\n            <\/div>\n        <\/div>\n        <div class=\"row\" ng-repeat=\"row in vm.panelState.structure.options.other_data.jobstreet_token_health\">\n            <div class=\"columns small-1\" ng-bind=\"row.id\">\n            <\/div>\n            <div class=\"columns small-3 break-words\">\n                <%row.tms_customer%> (<%row.tms_customer_id%>)\n            <\/div>\n            <div class=\"columns small-3 break-words\" ng-bind=\"row.username\">\n            <\/div>\n            <div class=\"columns small-1  break-words\" ng-bind=\"row.token_health\">\n            <\/div>\n            <div class=\"columns small-2  break-words\" ng-bind=\"row.job_portal\">\n            <\/div>\n            <div class=\"columns small-2  break-words\" ng-bind=\"row.last_posting_date\">\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"row p-4\" ng-if=\"vm.panelState.structure.options.other_data.queue_status_data\">\n    <div class=\"columns small-10\">\n        <h3>Queue Status [Error Rows] <%vm.panelState.structure.options.other_data.queue_status_data.total_error_text%> <\/h3> \n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                <b>TMS<\/b> \n                <br>\n                <div class=\"row\" ng-repeat=\"data in vm.panelState.structure.options.other_data.queue_status_data.tms_error_text\">\n                    <div class=\"columns small-10\" ng-bind=\"data\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                <b>RMS<\/b>\n                <br>\n                <div class=\"row\" ng-repeat=\"data in vm.panelState.structure.options.other_data.queue_status_data.rms_error_text\">\n                    <div class=\"columns small-10\" ng-bind=\"data\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                <b>Admin<\/b>\n                <br>\n                <div class=\"row\" ng-repeat=\"data in vm.panelState.structure.options.other_data.queue_status_data.admin_error_text\">\n                    <div class=\"columns small-10\" ng-bind=\"data\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                <b>RP Talent<\/b>\n                <br>\n                <div class=\"row\" ng-repeat=\"data in vm.panelState.structure.options.other_data.queue_status_data.talent_error_text\">\n                    <div class=\"columns small-10\" ng-bind=\"data\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"row\">\n            <div class=\"columns small-10\">\n                <b>Failed Jobs<\/b>\n                <br>\n                <div class=\"row\" ng-repeat=\"data in vm.panelState.structure.options.other_data.queue_status_data.failed_job_counts\">\n                    <div class=\"columns small-10\" ng-bind=\"data\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n","common\/app\/panel-content\/google_mfa_dialog":"<div class=\"py-6 px-6 text-center\">\n    <div class=\"row pb-0\" style=\"border-bottom: dashed 1px #ccc;padding-bottom: 1rem;margin-bottom: 1rem;\">\n        <div class=\"columns small-12 text-center\">\n            <h3>Install Authenticator<\/h3>\n                    <\/div>\n        <div class=\"columns small-12 align-middle inline p-5\">\n            <div class=\"columns small-5 p-5\">\n                <div class=\"text-center\">\n                    <div ng-bind-html=\"vm.panelState.structure.options.app_store_link | trustAsHtml\"><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"columns small-5 p-5\">\n                <div class=\"text-center\">\n                    <div ng-bind-html=\"vm.panelState.structure.options.play_store_link | trustAsHtml\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"row pt-5\">\n        <div class=\"columns small-12 text-center p-5\">\n            <h3>Scan Code<\/h3>\n                    <\/div>\n\n    <\/div>\n    <div class=\"row\">\n        <div class=\"columns small-5\">\n            <div class=\"text-center\">\n                <img src=\"<% vm.panelState.structure.options.qr_code %>\">\n            <\/div>\n        <\/div>\n        <div class=\"columns small-7\">\n            <div class=\"text-left p-2\">\n                <p>\n                    If you are unable to scan the QR code, please enter this manually into the app\n                <\/p>\n                <p>\n                <div class=\"text-center\" style=\"border: solid 1px #555;\"><%vm.panelState.structure.options.secret_key%><\/div>\n                <\/p>\n                <p>\n                    Please keep this code securely to allow reactivation of your Google Authenticator in future\n                <\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"flex flex-direction__column flex-justify-content__space-between\">\n        <div class=\"flex-list-template-row-item__meta--horizontal-labels text-right\">\n            <div class=\"form-footer\" ng-if=\"vm.panelState.structure.options.buttons\">\n                <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.options.buttons\" type=\"'inline'\"><\/fb-field-buttons-wrapper>\n            <\/div>\n        <\/div>\n    <\/div>\n\n<\/div>\n","common\/app\/panel-content\/document-library":"<sod-document-library options=\"vm.panelState.structure.options.documentLibraryOptions\" get-model=\"vm.getModel\"><\/sod-document-library>","common\/app\/panel-content\/product-selector":"<div class=\"parser-selector-wrapper\"\n     ng-init=\"completeButton = vm.panelState.structure.options.buttons.continue; completeButton.attr.disabled = !vm.panelState.model.provider; product_selector = vm.panelState.structure.options.product_selector\">\n    <div class=\"parser-selector active\">\n        <div ng-if=\"product_selector.products.length > 0\">\n            <div class=\"text-center\" style=\"padding:0 20px\">\n                <h2 class=\"my-2\" ng-bind=\"vm.panelState.structure.options.title\"\n                ><\/h2>\n                            <\/div>\n            <simple-product-selector options=\"vm.panelState.structure.options.product_selector\"\n                                     ng-model=\"vm.panelState.model.provider\"\n                                     ng-change=\"completeButton.attr.disabled = !vm.panelState.model.provider\"><\/simple-product-selector>\n            <div class=\"w-full bg-grey h-px\"><\/div>\n            <div class=\"parser-selector-actions\">\n                <div class=\"confirm-button-wrapper my-2 px-5x\">\n                        <span>\n                            <fb-field-button element=\"completeButton\"><\/fb-field-button>\n                        <\/span>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"my-2\" style=\"padding:0 20px\"\n             ng-if=\"product_selector.products.length <= 0\">There is no active <%vm.panelState.structure.options.entity_label%> available for usage. <br\/> Please enable at least one <%vm.panelState.structure.options.entity_label%> to continue.<\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/list":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <div class=\"form-block\" ng-if=\"vm.panelState.structure.component.form\">\n        <fb-form-generator fb-data=\"vm.panelState.structure.component.form\"><\/fb-form-generator>\n    <\/div>\n    <rms-list-template-view options=\"vm.panelState.structure.options\" ng-model=\"vm.panelState.model\" refresh=\"vm.refreshDs\"><\/rms-list-template-view>\n    <\/div>\n<\/div>","common\/app\/panel-content\/list-filter-with-status":"<rms-list-filter-status-selection options=\"vm.panelState.structure.options\"><\/rms-list-filter-status-selection>","common\/app\/panel-content\/workflow-onboarding-review":"<div class=\"pt-15\">\n    <div class=\"job-create-review recruiter-selection-wrapper\">\n        <div class=\"recruiter-selection-list\" style=\"overflow-y: hidden!important;\">\n            <div class=\"job-create-review\">\n                <div class=\"jobs-info\">\n                    <div class=\"list-style-type__none review-item-list-row-wrapper pb-20\"\n                        ng-init=\"dataItems = vm.options.model.hid_selected_data\">\n                        <div class=\"pinned-review-panel__content__item p-0\">\n                        <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                            <div class=\"columns small-3 pl-0\">\n                                <div class=\"text-bold ng-binding\">\n                                <h6><span class=\"text-bold ng-binding\">Employee Id<\/span><\/h6>\n                                <\/div>\n                            <\/div>\n\n                            <div class=\"columns small-9\" ng-if=\"dataItems.employee.generated\">\n                                <span class=\"\">Generated at Sync (Expected Next Id : &lt;%dataItems.employee.user_id%&gt;)<\/span>\n                            <\/div>\n                            <div class=\"columns small-9\" ng-if=\"!dataItems.employee.generated\">\n                                <span class=\"\" ng-bind=\"dataItems.employee.user_id\"><\/span>\n                            <\/div>\n\n                        <\/div>\n                        <div class=\"review-item-list-row\">\n                            <div class=\"columns small-3 pl-0\">\n                                <div class=\"text-bold ng-binding\">\n                                <h6><span class=\"text-bold ng-binding\" >Employee Type<\/span><\/h6>\n                                <\/div>\n                            <\/div>\n                            <div class=\"columns small-9\">\n                                <span class=\"\" ng-bind=\"dataItems.employee.type_string\"><\/span>\n                            <\/div>\n                        <\/div>\n                        <\/div>\n\n                    <\/div>\n                                        <div ng-if=\"vm.options.model.sub_personal_subform\" ng-init=\"dataItems = vm.options.model.sub_personal_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Employee &amp; Personal<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Salutation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_salutation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>First Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_first_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Known As<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_known_as || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Race<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_race || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.gender_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Status<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_marital_status || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Email Address<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.text_preferred_personal_email || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Citizenship<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_citizenship || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.nationality_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_of_birth_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Expected Start Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_expected_start_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_job_subform\" ng-init=\"dataItems = vm.options.model.sub_job_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Job<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Division<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                                                        <span class=\"text-muted\" ng-bind=\"item.division_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employment Class<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_employment_class || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_identification_sync_subform\" ng-init=\"dataItems = vm.options.model.sub_identification_sync_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Identification<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_identification_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.identification_country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Legal Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_legal_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Applied<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_applied || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Issued<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_issued || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Expiry<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_expiry || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_address_subform\" ng-init=\"dataItems = vm.options.model.sub_address_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Address<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\" style=\"padding-bottom: 0px!important;\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>City<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_city || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address Line 1<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_1 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address Line 2<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_2 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_postal_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_emergency_contact_subform\" ng-init=\"dataItems = vm.options.model.sub_emergency_contact_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Emergency Contact<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Relation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_contact_relation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_education_subform\" ng-init=\"dataItems = vm.options.model.sub_education_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Education<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_school || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.from_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.to_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Education Level<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.education_level_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_bank_details_subform\" ng-init=\"dataItems = vm.options.model.sub_bank_details_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Bank Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.bank_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_bank_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Branch Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_bank_branch || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Account No<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_account_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_currency || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/login":"<div class=\"get-started-image\" style=\"background-image: url('<%vm.panelState.structure.options.background_image%>')\">\n\n<\/div>\n<div class=\"get-started-form\" has-min-height>\n\n    <div class=\"get-started-center\">\n        <div class=\"get-started-heading\">\n            <h1 ng-bind=\"vm.panelState.structure.options.labels.form_header\"><\/h1>\n        <\/div>\n        <div class=\"get-started-content\">\n            <p ng-bind=\"vm.panelState.structure.options.labels.line1\"><\/p>\n            <p ng-bind=\"vm.panelState.structure.options.labels.line2\"><\/p>\n            <p ng-bind=\"vm.panelState.structure.options.labels.line3\"><\/p>\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" model=\"model\" ng-if=\"!vm.panelState.structure.options.prevent_basic_auth\"\n                       validation=\"content.validation\"><\/fb-form-generator>\n            <div class=\"row secondary-actions\"  ng-if=\"!vm.panelState.structure.options.prevent_basic_auth\">\n                <div class=\"small-6 columns\" ng-repeat=\"element in vm.panelState.structure.options.secondary_actions\">\n                    <fb-field-anchor element='element'><\/fb-field-anchor>\n                <\/div>\n\n            <\/div>\n            <div ng-if=\"vm.panelState.structure.options.sso_buttons.length > 0\">\n            <div>&nbsp;<\/div>\n            <div class=\"text-center\"  ng-if=\"!vm.panelState.structure.options.prevent_basic_auth\">or<\/div>\n            <div>&nbsp;<\/div>\n            <\/div>\n            <div>\n                <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.options.sso_buttons\"\n                                          type=\"'grid'\"\n                                          name=\"'sso-buttons'\"><\/fb-field-buttons-wrapper>\n                            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-onboarding-review-timesoft":"<div class=\"pt-15\">\n    <div class=\"job-create-review recruiter-selection-wrapper\">\n        <div class=\"recruiter-selection-list\" style=\"overflow-y: hidden!important;\">\n            <div class=\"job-create-review\">\n                <div class=\"jobs-info\">\n                    <div class=\"list-style-type__none review-item-list-row-wrapper pb-20\"\n                        ng-init=\"dataItems = vm.options.model.hid_selected_data\">\n                        <div class=\"pinned-review-panel__content__item p-0\">\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\">Entity Name<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n\n                                <div class=\"columns small-9\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.biz_entity_name\"><\/span>\n                                <\/div>\n\n                            <\/div>\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\">Employee Id<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n\n                                <div class=\"columns small-9\" ng-if=\"dataItems.employee.generated\">\n                                    <span class=\"\">Generated at Sync (Expected Next Id : &lt;%dataItems.employee.user_id%&gt;)<\/span>\n                                <\/div>\n                                <div class=\"columns small-9\" ng-if=\"!dataItems.employee.generated\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.user_id\"><\/span>\n                                <\/div>\n\n                            <\/div>\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\" >Employee Type<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.type_string\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\" >CPF Identifier<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.employer_cpf_ref\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_personal_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_personal_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Employee &amp; Personal<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Salutation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_salutation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Preferred Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_preferred_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.gender_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Status<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.marital_status_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Race<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.race_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Religion<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.religion_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Education Level<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.education_level_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Email Address<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.text_preferred_personal_email || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_postal_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 1<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_1 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 2<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_2 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_job_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_job_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Job<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Department<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.department || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Occupation Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.occupation_code_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Offered Remuneration<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_offered_remuneration || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.currency_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Day Work Per Week<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_day_work_perweek || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Hours Work Per Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_hrs_work_peryear || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Probation Period<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.probation_period_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Expected Start Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_expected_start_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Confirmation Due Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_confirmation_due_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Confirmation On Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_confirmation_on_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_identification_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_identification_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Identification<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_fullname_in_identification || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.nationality_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Citizenship<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.citizenship_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Passport Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_passport_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Passport Issue Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_passport_issue_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Passport Expiry Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_passport_expiry_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_emergency_contact_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_emergency_contact_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Emergency Contact<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Relation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.contact_relation_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_payroll_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_payroll_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Payroll Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contribution Fund<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.refund_code_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Fund Levy<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fund_levy_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Pay Group<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.pay_group_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.bank_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Branch Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_bank_branch || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Account No<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_account_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/loader\/document-parsing":"<div class=\"rms-loader-wrapper \">\n    <div class=\"rms-loader-image\">\n        <img src=\"\" \/>\n    <\/div>\n    <div class=\"rms-loader-header\"><\/div>\n<\/div>","common\/app\/panel-content\/panel-content-flow":"<div class=\"workflow-content-panel\">\n    <div class=\"workflow-sidebar\">\n        <div ng-bind-html=\"vm.settings.header\"><\/div>\n        <ul class=\"workflow-step\" ng-if=\"!vm.isStepModelEmpty()\" ng-init=\"vm.setActiveInit()\">\n            <li ng-repeat-start=\"item in vm.panelContents\"\n                ng-if=\"vm.stepModel[item.step].active && vm.stepModel[item.step].visibility === 'shw'\"\n                ng-click=\"vm.setActive(item)\"\n                ng-class=\"{'active': vm.isActive(item)}\"\n            >\n                <a>\n                    <div>\n                                                <i class=\"fa main-color-text\" ng-class=\"{\n                            'fa-circle': vm.stepModel[item.step].completed,\n                            'fa-circle-o': !vm.stepModel[item.step].completed,\n                        }\"><\/i>\n                        <span ng-bind=\"item.name\"><\/span>\n                    <\/div>\n                    <p ng-bind=\"item.description\" ng-if=\"item.description.length\"><\/p>\n                <\/a>\n            <\/li>\n            <li ng-repeat-end\n                ng-if=\"!vm.stepModel[item.step].active  && vm.stepModel[item.step].visibility === 'shw'\"\n            >\n                <div class=\"muted-step\">\n                                        <i class=\"fa fa-circle-o\"><\/i>\n                    <span ng-bind=\"item.name\"><\/span>\n                <\/div>\n                <p ng-bind=\"item.description\" ng-if=\"item.description.length\"><\/p>\n            <\/li>\n        <\/ul>\n    <\/div>\n    <div class=\"workflow-content\">\n        <div class=\"workflow-async-panel\">\n            <async-panel data=\"vm.stepModel[vm.pageData.activeOption.panel_content_id]\"\n                         options=\"vm.pageData.activeOption\" refresh=\"vm.refreshAsyncPanel\"\n                         ng-if=\"vm.pageData.activeOption\" is-refreshing=\"vm.refreshing\"\n                         panel=\"vm.pageData.activePanelState\"><\/async-panel>\n\n        <\/div>\n\n        <div class=\"workflow-action-wrapper\">\n            <div class=\"workflow-action-overlay\"\n                 ng-if=\"vm.refreshing()\"\n            >\n                <div class=\"workflow-loader-wrapper\">\n                    <div class=\"workflow-loader\">\n                        <span>Loading<\/span><img\n                            src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"\/>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div class=\"action-area\" ng-if=\"vm.settings.flow_buttons\" ng-class=\"{  'hide-actions': vm.refreshing()}\">\n                <div ng-repeat=\"button in vm.settings.flow_buttons\" ng-if=\"vm.showButton(button)\"\n                     style=\"display:inline-block;\">\n                    <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-async-onboarding-form":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        \n    <div class=\"review-panel-wrapper offer offer-form-panel\">\n        <div class=\"offer-form-wrapper\">\n                        <div class=\"form-block ww-content-panel form-block-restrict\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n            <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-offer-contract-review":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper offer\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\" >\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div style=\"margin-bottom: -7px;\">\n        <div class=\"flex items-center justify-end w-full\" >\n            <div class=\"text-xs text-bold mr-4\">Refresh the viewer if it does not load<\/div>\n            <button ng-click=\"vm.panelState.structure.refreshViewer()\" class=\"button small default no-margin\">Refresh Viewer<\/button>\n        <\/div>\n    <\/div>\n    <\/div>\n\n            \n    <div class=\"doc-preview px-1\">\n\n        <div ng-if=\"!vm.panelState.model.preview_url\">\n            <div class=\"ex-wrapper\" style=\"position: absolute; width: 242px; top: 50%; left: 50%; transform: translate(-50%, -50%);\">\n                <div class=\"text-center ex-content rms-error\">\n                    <div class=\"rms-error-description\" style=\"margin-bottom: 0;\">\n                        <div class=\"ex-header\">\n                            Oops\n                        <\/div>\n                        <div class=\"ex-description\">\n                            Something went wrong, we are looking into it.\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n\n        <sod-document-library-google-doc\n            url=\"vm.panelState.model.preview_url\"\n            mime-type=\"vm.panelState.structure.options.mime_type\"\n            ng-if=\"vm.panelState.model.preview_url\"\n            refresh=\"vm.panelState.structure.refreshViewer\"\n        ><\/sod-document-library-google-doc>\n    <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-offer-custom-template":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper offer\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block \" >\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n\n                <fb-bind-html-compile template=\"vm.panelState.structure.options.template\" options=\"vm.panelState\" get-model=\"vm.getModel\"><\/fb-bind-html-compile>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/saml-sso-form":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <div style=\"height:100%\" ng-class=\"vm.panelState.structure.options.entity_view_body_wrapper_class\">\n        <div class=\"form-content\">\n            <div ng-if=\"vm.panelState.structure.options.template_before_form\" ng-bind-html=\"vm.panelState.structure.options.template_before_form | trustAsHtml\">\n            <\/div>\n            <div class=\"form-block\"  style=\"padding-bottom: 0px !important;\" ng-class=\"{'has-form-footer': vm.panelState.structure.options.show_footer_form_buttons}\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"vm.panelState.structure.options.show_footer_form_buttons\"><\/fb-form-generator>\n\n            <\/div>\n            <div ng-if=\"vm.panelState.structure.options.template_after_form\" ng-bind-html=\"vm.panelState.structure.options.template_after_form | trustAsHtml\">\n            <\/div>\n        <\/div>\n        <div class=\"p-10 mt-0\">\n            <div class=\"pb-10\">\n                <label>Identifier (Entity ID)<\/label>\n                <sod-clipboard\n                    ng-if=\"vm.panelState.structure.options.sso_provider.sp_entity_id\"\n                    class=\"sod-clipboard__btn-margin-zero\"\n                    value=\"vm.panelState.structure.options.sso_provider.sp_entity_id\"\n                    identifier=\"'sod-clipboard' + 1\"><\/sod-clipboard>\n\n                <label>Reply URL (Assertion Consumer Service URL)<\/label>\n                <sod-clipboard\n                    ng-if=\"vm.panelState.structure.options.sso_provider.sp_acs_url\"\n                    class=\"sod-clipboard__btn-margin-zero\"\n                    value=\"vm.panelState.structure.options.sso_provider.sp_acs_url\"\n                    identifier=\"'sod-clipboard' + 2\"><\/sod-clipboard>\n\n                <label>Relay State<\/label>\n                <sod-clipboard\n                    ng-if=\"vm.panelState.structure.options.sso_provider.sp_relay_state\"\n                    class=\"sod-clipboard__btn-margin-zero\"\n                    value=\"vm.panelState.structure.options.sso_provider.sp_relay_state\"\n                    identifier=\"'sod-clipboard' + 3\"><\/sod-clipboard>\n            <\/div>\n        <\/div>\n        <div class=\"form-footer\" ng-if=\"vm.panelState.structure.options.form_buttons || vm.panelState.structure.options.show_footer_form_buttons\" ng-init=\"footer_buttons = (vm.panelState.structure.options.form_buttons) ? vm.panelState.structure.options.form_buttons : vm.panelState.structure.component.form.buttons\">\n            <fb-field-buttons-wrapper buttons=\"footer_buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>\n        <\/div>\n        <div ng-if=\"vm.panelState.structure.options.side_panel.active\"\n             class=\"entity-view-side-panel active\"\n             entity-side-panel on-backdrop-click=\"vm.panelState.structure.options.side_panel.event.on_backdrop_click\"\n        >\n            <div class=\"sp-backdrop\"><\/div>\n            <div class=\"sp-content\">\n                <async-panel options=\"vm.panelState.structure.options.side_panel.panel_content\" refresh=\"vm.refreshAsyncPanel\" is-refreshing=\"vm.isAsyncPanelRefreshing\"\n                        data='vm.panelState.model'\n            ><\/async-panel>\n                <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/list-filter":"<rms-list-filter options=\"vm.panelState.structure.options\"><\/rms-list-filter>","common\/app\/panel-content\/workflow-onboarding-canceled":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        <div class=\"review-panel-wrapper offer\">\n    <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\">\n        <div ng-if=\"vm.panelState.structure.options.show_header\">\n        <div class=\"offer-candidate-details\"\n    ng-init=\"onboarding_info = vm.panelState.model.onboarding_info\">\n            <\/div>\n\n        <\/div>\n        \n<div class=\"job-candidate-offer workflow-review-step pending-candidate-acceptance\" ng-init=\"model = vm.panelState.model\">\n    <div class=\"approval-whats-next\">\n        <div>\n            <div class=\"approval-header\">\n                <h2><i class=\"fa\" ng-class=\"model.header_icon_classes\"><\/i><%model.title%><\/h2>\n            <\/div>\n            <div class=\"approval-panel\">\n                <ul class=\"approval-timeline\">\n                    <li ng-repeat=\"workflow_history in model.workflow_histories\">\n                        <div class=\"approval-history-icon\">\n                            <i class=\"fa\" ng-class=\"workflow_history.icon\"><\/i>\n                            <div class=\"approval-history-line\"><\/div>\n                        <\/div>\n                        <div class=\"approval-item-content\" ng-bind-html=\"workflow_history.message\">\n                        <\/div>\n                    <\/li>\n                <\/ul>\n\n                <div class=\"line-separator\"><\/div>\n                <div class=\"approval-item\" style=\"padding-top:0\">\n                    <div ng-repeat=\"_link in vm.panelState.structure.options.redirect_links\">\n                        <a ng-href=\"<%_link.url%>\" ng-bind=\"_link.label\"><\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-onboarding-rehire":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        <div class=\"review-panel-wrapper offer\">\n    <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\">\n        <div ng-if=\"vm.panelState.structure.options.show_header\">\n        <div class=\"offer-candidate-details\"\n    ng-init=\"onboarding_info = vm.panelState.model.onboarding_info\">\n        <div style=\"margin-bottom: -7px;\">\n        <div class=\"flex items-center justify-end w-full\" >\n            <div class=\"text-xs text-bold mr-4\">Click to re-run check<\/div>\n            <button ng-click=\"vm.panelState.structure.refreshViewer()\" class=\"button small default no-margin\"><i class=\"fa fa-recycle\"><\/i>Re-check<\/button>\n        <\/div>\n    <\/div>\n            <\/div>\n\n        <\/div>\n        \n<div class=\"p-15\" ng-controller=\"EmployeeSelectionController\">\n    <!-- <div class=\"align-middle\">\n        <div class=\"flex flex-col items-center\ttext-center\">\n            <div class=\"m-auto\">\n                <div ng-show=\"vm.panelState.loading\" class=\"employee-selection-list-loading\">\n                    <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\" \/>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div> -->\n    <div ng-hide=\"vm.panelState.loading\">\n        <div ng-if=\"vm.panelState.success\">\n            <div class=\"flex items-center justify-between flex-wrap pb-6\">\n                <div class=\"flex items-center flex-no-shrink text-white mr-6\">\n                    <span class=\"font-semibold text-md text-muted tracking-tight\">Please choose one option below based on the rehire check results:<\/span>\n                <\/div>\n            <\/div>\n            <div class=\"employee-selection-list\">\n                <div ng-repeat=\"item in vm.panelState.employeeListing\" ng-init=\"item.color_icon = colorCodeArray[$index % colorCodeArray.length]\">\n                    <div class=\"flex-list-template-row-item py-6 h-20 px-4 shadow rounded-sm mb-2 employee-selection-list-section\" ng-click=\"vm.panelState.events.select(item)\" ng-class=\"{ 'active': vm.panelState.events.isSelected(item) }\">\n                        <div class=\"w-6 flex items-center\">\n                            <div class=\"flex-list-template-row-item__meta--horizontal\">\n                                <div class=\"flex-list-template-row-item__meta--horizontal-labels\">\n                                    <div class=\"flex child-pad--extra-small items-center\">\n                                        <div ng-click=\"$event.stopPropagation()\" class=\"items-center\">\n                                            <input type=\"radio\" id=\"chk-<%item.user_id%>\" disabled name=\"selection\" ng-checked=\"vm.panelState.events.isSelected(item)\" \/>\n                                            <label class=\"item-radio\" for=\"chk-<%item.user_id%>\"  ng-click=\"vm.panelState.events.addSelected(item)\"><\/label>\n                                            <!-- <label class=\"item-radio\" for=\"chk-<%item.user_id%>\"><\/label> -->\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                        <div class=\"flex-auto\">\n                            <div class=\"child-pad__item flex flex-col justify-center overflow-hidden pl-5\">\n                            <div class=\"h-12 items-center\" ng-class=\"{'flex-col' : item.user_id !== 0, 'flex' : item.user_id === 0}\">\n                                <div class=\"flex items-center child-pad--small\">\n                                    <div class=\"text-bold sod-table-cell\" ng-bind=\"item.type == 'employee' ? item.full_name : 'Create new employee record' \"><\/div>\n                                <\/div>\n                                <div class=\"flex items-center child-pad--small\" ng-if=\"item.user_id !== 0\">\n                                    <div class=\"text-bold sod-table-cell\">\n                                        <i class=\"fa-fw fa fa-id-card\"><\/i> <%item.user_id%>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                            <\/div>\n                        <\/div>\n                        <div class=\"justify-end w-32\">\n                            <div class=\"flex-list-template-row-item__meta--horizontal justify-center pt-2\">\n                                <div class=\"flex-list-template-row-item__meta--horizontal-labels\">\n                                    <div class=\"flex child-pad--extra-small items-center justify-start\">\n                                        <div class=\"child-pad__item\">\n                                            <div class=\"w-3 h-3 rounded-full bg-<%item.result.color%>\"><\/div>\n                                        <\/div>\n                                        <div class=\"child-pad__item\">\n                                            <span class=\"text-bold text-<%item.result.color%>\"><%item.result.name%><\/span>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"align-middle\" ng-if=\"!vm.panelState.success\">\n            <div class=\"flex flex-col items-center text-center callout alert\" ng-if=\"!vm.panelState.error_data\">\n                <div class=\"m-auto\">\n                    <h3>Unable to complete rehire check<\/h3>\n                    <div>Please try again. If the issue persist, please contact the support team regarding this issue. We apologise for any inconvenience caused.<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"flex flex-col items-center text-center callout alert\" ng-if=\"vm.panelState.error_data\">\n                <div class=\"m-auto\" ng-if=\"vm.panelState.error_data.status_code == 500\">\n                    <h3>Unable to complete rehire check<\/h3>\n                    <div>Please try again. If the issue persist, please contact the support team regarding this issue. We apologise for any inconvenience caused.<\/div>\n                <\/div>    \n                <div class=\"m-auto\" ng-if=\"vm.panelState.error_data.rms_error_code == 'no-integration-account-active'\">\n                    <h3><%vm.panelState.error_data.msg%><\/h3>\n                    <div>Please proceed to activate the integration from the Business Entity Settings<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-onboarding-sync":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        <div class=\"review-panel-wrapper offer\">\n    <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\">\n        <div ng-if=\"vm.panelState.structure.options.show_header\">\n        <div class=\"offer-candidate-details\"\n    ng-init=\"onboarding_info = vm.panelState.model.onboarding_info\">\n                <div class=\"flex-list-template-row-item__meta--horizontal\" ng-if=\"!model.success\">\n        <div class=\"flex-list-template-row-item__meta--horizontal-labels text-right\">\n            <div class=\"flex child-pad--extra-small items-center justify-end\">\n                <div class=\"child-pad__item\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.events.info_request_resend\" event-data=\"vm.options.model\">\n                                                <button\n                        class=\"button rounded\"\n                        sod-emit-event event-name=\"vm.panelState.structure.options.events.info_request_edit\"\n                        event-data=\"vm.options.model\"><i class=\"fa fa-pencil\"><\/i>Edit Details\n                    <\/button>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n\n        <\/div>\n        <div class=\"workflow-review-step p-6\" ng-init=\"model = vm.panelState.model\" style=\"margin-top: -14px !important;\">\n    <div class=\"approval-whats-next\">\n        <div class=\"approval-header\" sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section\" close-direction=\"down\" style=\"width: auto;\">\n            <h2 class=\"mb-0 info-section-header\" style=\"margin-left: -20px !important;\">\n                <i class=\"fa\" ng-class=\"model.sync_result.header_icon_classes\"><\/i>\n                Result of Sync : \n                <span class=\"pl-2 content-status-text text-green\" ng-if=\"model.sync_result.success\">Successfully Synced<\/span>\n                <span class=\"pl-2 content-status-text text-red\" ng-if=\"!model.sync_result.success && !model.sync_result.syncing\">Sync Unsuccessful<\/span>\n                <div ng-if=\"vm.panelState.structure.options.provider == 7\">\n                    <span class=\"pl-2 content-status-text text-orange\" ng-if=\"model.sync_result.syncing\">Queued for Syncing<\/span>\n                <\/div>\n            <\/h2>\n            <div class=\"approval-panel info-section-content mt-4\">\n                <div class=\"approver-status w-96\" style=\"width: 650px;\">\n                    <div class=\"text-sm\" style=\"overflow-wrap: break-word; word-wrap: break-word; hyphens: auto;\">\n                        <div class=\"child-pad--extra-small items-center justify-start\">\n                            <div class=\"child-pad__item\">\n                                <div class=\"text-sm pl-2\" style=\"overflow-wrap: break-word; word-wrap: break-word; hyphens: auto;\">\n                                    <div class=\"form-validation-summary\" ng-if=\"model.sync_result.error_message\">\n                                        <div class=\" callout alert\" ng-bind-html=\"model.sync_result.error_message\"><\/div>\n                                    <\/div>\n                                    <div class=\"success\" ng-if=\"model.sync_result.success_message\">\n                                        <div class=\"success\" ng-bind-html=\"model.sync_result.success_message\"><\/div>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"approval-header\" sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section\" close-direction=\"down\" style=\"width: auto;\">\n            <h2 class=\"mb-0 info-section-header\" style=\"margin-left: -20px !important;\">\n                <i class=\"fa\" ng-class=\"model.sync_result.header_icon_classes\"><\/i>\n                History\n            <\/h2>\n            <div class=\"approval-panel info-section-content\">\n                <ul class=\"approval-timeline\">\n                    <li ng-repeat=\"workflow_history in model.sync_result.workflow_histories\">\n                        <div class=\"approval-history-icon\">\n                            <i class=\"fa\" ng-class=\"workflow_history.icon\" style=\"padding-left:11px;\"><\/i>\n                            <div class=\"approval-history-line\"><\/div>\n                        <\/div>\n                        <div class=\"approval-item-content\" ng-bind-html=\"workflow_history.message\">\n                        <\/div>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n\n        <div class=\"approval-header\" sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section\" close-direction=\"down\" style=\"width: auto;\">\n            <h2 class=\"mb-0 info-section-header\" style=\"margin-left: -20px !important;\">\n                <i class=\"fa\" ng-class=\"model.sync_result.header_icon_classes\"><\/i>\n                Employee Information\n            <\/h2>\n            <div class=\"approval-panel info-section-content mt-4\">\n                <div class=\"approver-status w-96\" style=\"width: 650px;\">\n                    <div class=\"text-sm\" style=\"overflow-wrap: break-word; word-wrap: break-word; hyphens: auto;\">\n                        <div class=\"child-pad--extra-small items-center justify-start\">\n                            <div class=\"child-pad__item\">\n                                <div class=\"text-sm pl-2\" ng-init=\"vm.options.model = model\" ng-if=\"vm.panelState.structure.options.provider == 17\">\n                                    <div class=\"pt-15\">\n    <div class=\"job-create-review recruiter-selection-wrapper\">\n        <div class=\"recruiter-selection-list\" style=\"overflow-y: hidden!important;\">\n            <div class=\"job-create-review\">\n                <div class=\"jobs-info\">\n                    <div class=\"list-style-type__none review-item-list-row-wrapper pb-20\"\n                        ng-init=\"dataItems = vm.options.model.hid_selected_data\">\n                        <div class=\"pinned-review-panel__content__item p-0\">\n                        <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                            <div class=\"columns small-3 pl-0\">\n                                <div class=\"text-bold ng-binding\">\n                                <h6><span class=\"text-bold ng-binding\">Employee Id<\/span><\/h6>\n                                <\/div>\n                            <\/div>\n\n                            <div class=\"columns small-9\" ng-if=\"dataItems.employee.generated\">\n                                <span class=\"\">Generated at Sync (Expected Next Id : &lt;%dataItems.employee.user_id%&gt;)<\/span>\n                            <\/div>\n                            <div class=\"columns small-9\" ng-if=\"!dataItems.employee.generated\">\n                                <span class=\"\" ng-bind=\"dataItems.employee.user_id\"><\/span>\n                            <\/div>\n\n                        <\/div>\n                        <div class=\"review-item-list-row\">\n                            <div class=\"columns small-3 pl-0\">\n                                <div class=\"text-bold ng-binding\">\n                                <h6><span class=\"text-bold ng-binding\" >Employee Type<\/span><\/h6>\n                                <\/div>\n                            <\/div>\n                            <div class=\"columns small-9\">\n                                <span class=\"\" ng-bind=\"dataItems.employee.type_string\"><\/span>\n                            <\/div>\n                        <\/div>\n                        <\/div>\n\n                    <\/div>\n                                        <div ng-if=\"vm.options.model.sub_personal_subform\" ng-init=\"dataItems = vm.options.model.sub_personal_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Employee &amp; Personal<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Salutation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_salutation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>First Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_first_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Known As<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_known_as || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Race<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_race || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.gender_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Status<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_marital_status || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Email Address<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.text_preferred_personal_email || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Citizenship<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_citizenship || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.nationality_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_of_birth_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Expected Start Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_expected_start_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_job_subform\" ng-init=\"dataItems = vm.options.model.sub_job_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Job<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Division<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                                                        <span class=\"text-muted\" ng-bind=\"item.division_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employment Class<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_employment_class || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_identification_sync_subform\" ng-init=\"dataItems = vm.options.model.sub_identification_sync_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Identification<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_identification_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.identification_country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Legal Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_legal_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Applied<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_applied || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Issued<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_issued || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Expiry<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_expiry || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_address_subform\" ng-init=\"dataItems = vm.options.model.sub_address_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Address<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\" style=\"padding-bottom: 0px!important;\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>City<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_city || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address Line 1<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_1 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address Line 2<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_2 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_postal_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_emergency_contact_subform\" ng-init=\"dataItems = vm.options.model.sub_emergency_contact_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Emergency Contact<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Relation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_contact_relation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_education_subform\" ng-init=\"dataItems = vm.options.model.sub_education_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Education<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_school || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.from_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.to_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Education Level<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.education_level_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_bank_details_subform\" ng-init=\"dataItems = vm.options.model.sub_bank_details_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Bank Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.bank_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_bank_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Branch Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_bank_branch || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Account No<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_account_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_currency || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n                                <\/div>\n                                <div class=\"text-sm pl-2\" ng-init=\"vm.options.model = model\" ng-if=\"vm.panelState.structure.options.provider == 18\">\n                                    <div class=\"pt-15\">\n    <div class=\"job-create-review recruiter-selection-wrapper\">\n        <div class=\"recruiter-selection-list\" style=\"overflow-y: hidden!important;\">\n            <div class=\"job-create-review\">\n                <div class=\"jobs-info\">\n                    <div class=\"list-style-type__none review-item-list-row-wrapper pb-20\"\n                        ng-init=\"dataItems = vm.options.model.hid_selected_data\">\n                        <div class=\"pinned-review-panel__content__item p-0\">\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\">Entity Name<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n\n                                <div class=\"columns small-9\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.biz_entity_name\"><\/span>\n                                <\/div>\n\n                            <\/div>\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\">Employee Id<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n\n                                <div class=\"columns small-9\" ng-if=\"dataItems.employee.generated\">\n                                    <span class=\"\">Generated at Sync (Expected Next Id : &lt;%dataItems.employee.user_id%&gt;)<\/span>\n                                <\/div>\n                                <div class=\"columns small-9\" ng-if=\"!dataItems.employee.generated\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.user_id\"><\/span>\n                                <\/div>\n\n                            <\/div>\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\" >Employee Type<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.type_string\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\" style=\"margin-bottom: -7px;\">\n                                <div class=\"columns small-3 pl-0\">\n                                    <div class=\"text-bold ng-binding\">\n                                    <h6><span class=\"text-bold ng-binding\" >CPF Identifier<\/span><\/h6>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"\" ng-bind=\"dataItems.employee.employer_cpf_ref\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_personal_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_personal_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Employee &amp; Personal<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Salutation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_salutation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Preferred Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_preferred_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.gender_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Status<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.marital_status_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Race<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.race_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Religion<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.religion_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Education Level<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.education_level_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Email Address<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.text_preferred_personal_email || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_postal_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 1<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_1 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 2<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_2 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_job_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_job_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Job<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Department<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.department || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Occupation Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.occupation_code_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Offered Remuneration<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_offered_remuneration || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.currency_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Day Work Per Week<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_day_work_perweek || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Hours Work Per Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_hrs_work_peryear || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Probation Period<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.probation_period_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Expected Start Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_expected_start_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Confirmation Due Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_confirmation_due_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Confirmation On Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_confirmation_on_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_identification_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_identification_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Identification<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_fullname_in_identification || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.nationality_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Citizenship<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.citizenship_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Passport Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_passport_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Passport Issue Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_passport_issue_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Passport Expiry Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_passport_expiry_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_emergency_contact_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_emergency_contact_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Emergency Contact<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Relation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.contact_relation_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                    <div ng-if=\"vm.options.model.sub_payroll_timesoft_subform\" ng-init=\"dataItems = vm.options.model.sub_payroll_timesoft_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Payroll Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contribution Fund<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.refund_code_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Fund Levy<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fund_levy_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Pay Group<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.pay_group_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.bank_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Branch Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_bank_branch || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Account No<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_account_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n                                <\/div>\n                                <div class=\"text-sm pl-2\" ng-init=\"vm.options.model = model\" ng-if=\"vm.panelState.structure.options.provider == 7\">\n                                    <div class=\"pt-15\">\n    <div class=\"job-create-review recruiter-selection-wrapper\">\n        <div class=\"recruiter-selection-list\" style=\"overflow-y: hidden!important;\">\n            <div class=\"job-create-review\">\n                <div class=\"jobs-info\">\n                    <div ng-if=\"vm.options.model.sub_personal_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_personal_frontier_subform; employee = vm.options.model.hid_selected_data.employee \">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Employee &amp; Personal<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Company ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_company_identifier || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employee Id<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\" ng-if=\"employee.generated\">\n                                    <span ng-if=\"!employee.sync_completed\">\n                                        Generated at Sync (Expected Next Id : &lt;% employee.user_id %&gt;)\n                                    <\/span>\n\n                                    <span ng-if=\"employee.sync_completed\"\n                                        class=\"text-muted\"\n                                        ng-bind=\"employee.user_id || '-'\">\n                                    <\/span>\n                                <\/div>\n                                <div class=\"columns small-9\" ng-if=\"!employee.generated\">\n                                    <span class=\"text-muted\" ng-bind=\"employee.user_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Position ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_position_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Salutation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_salutation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>First Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_first_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Display Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.gender_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Status<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.marital_status_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.marital_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Race<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.race_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Religion<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.religion_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.nationality || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Preferred Personal Email<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.text_preferred_personal_email || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Home Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_home_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Mobile Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.contact_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 1<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_1 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 2<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_2 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_postal_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Primary Tax Address<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.primary_tax_address || '-'\"><\/span>\n                                <\/div>\n                            <\/div>                          \n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_job_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_job_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Job<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employment Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_employment_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_currency || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Offered Remuneration<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_offered_remuneration || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Remuneration Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_remuneration_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Expected Start Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_expected_start_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_identification_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_identification_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Identification<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.identification_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_identification_country || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Issued<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_issued || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Expiry<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_expiry || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                             <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Is Citizen<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.is_citizen || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_bank_details_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_bank_details_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Bank Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_bank_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Branch Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_bank_branch || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Account No<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_account_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Pay Method<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.pay_method|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.to_name|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Pay Frequency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.pay_frequency|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_education_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_education_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Education<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_school || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Education Level<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.education_level_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Qualification<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_qualification_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Field of Study<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_field_of_study || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Highest Education<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.highest_education || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.school_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.school_country || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Minor<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.minor || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Department<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.department || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_payroll_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_payroll_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Payroll Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Income Tax Identifier<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_income_tax_identifier || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>CPF \/ EPF Identifier<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_cpf_identifier || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_work_experience_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_work_experience_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Work Experience<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Job Title<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_job_title || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Company Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_company_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Industry<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_industry || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Summary<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                <span class=\"text-muted\" ng-bind=\"item.summary_cleaned || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Workplace Location<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_workplace_location || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Reason for Leaving<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_reason_for_leaving || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_currency || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Drawn Monthly Salary<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_drawn_salary || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employer Size<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.employer_size|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Region<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.region|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Municipality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.municipality|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.postal_code|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currently employed here<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.currently || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_family_information_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_family_information_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Family Information<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>First Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_first_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name of Family Member<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Relation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_contact_relation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_gender || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_identification_country || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_identification_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_nationality || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n    <\/div>\n    <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/internal-signer-note":"<div class=\"dialog-details\" ng-init=\"dataItems = vm.panelState.structure.options.data\">\n    <div class=\"row\">\n        <div class=\"columns small-12\"\n        >\n            <div class=\"dialog-details-items\">\n                <div class=\"row\">\n                    <div class=\"columns\" ng-bind-html=\"dataItems.internal_signer_note | trustAsHtml\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div><\/div>\n        <\/div>\n        <div class=\"columns small-4\" ng-if=\"vm.panelState.structure.options.buttons.length\">\n            <div class=\"dialog-detail-actions\">\n                <h5>Note to Internal Signer<\/h5>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/parser-selector":"<div class=\"parser-selector-wrapper\"\n     ng-init=\"vm.panelState.structure.options.buttons.continue.attr.disabled = !(!!vm.panelState.model.parser_provider_id)\">\n    <div style=\"padding: 20px 0;\" class=\"parser-selector active\" >\n        <div class=\"text-center\" style=\"padding:0 20px\">\n            <h2>Choose Your Parser<\/h2>\n                    <\/div>\n        <simple-product-selector\n                options=\"vm.panelState.structure.options.product_selector\"\n                ng-model=\"vm.panelState.model.parser_provider_id\"\n                ng-change=\"button.attr.disabled = false\"\n        ><\/simple-product-selector>\n        <hr \/>\n        <div class=\"parser-selector-actions\">\n            <div>\n                <simple-product-selector-confirm-label options=\"vm.panelState.structure.options.product_selector\" selected-value=\"vm.panelState.model.parser_provider_id\" label-key=\"selectedLabel\"><\/simple-product-selector-confirm-label>\n            <\/div>\n            <div class=\"confirm-button-wrapper\">\n                <span ng-init=\"button = vm.panelState.structure.options.buttons.continue\">\n                    <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n                <\/span>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"parser-selector-loading\">\n        <div class=\"rms-loader-wrapper parsing\">\n    <div class=\"rms-loader-image\">\n        <img src=\"https:\/\/content.recruiterpal.com\/app\/assets\/images\/common\/Parsing_Bot.svg\" \/>\n    <\/div>\n    <div class=\"rms-loader-header\">Parsing your document<\/div>\n<\/div>    <\/div>\n<\/div>","common\/app\/panel-content\/workflow-onboarding-custom-template":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        <div class=\"review-panel-wrapper offer\">\n    <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\">\n        <div ng-if=\"vm.panelState.structure.options.show_header\">\n        <div class=\"offer-candidate-details\"\n    ng-init=\"onboarding_info = vm.panelState.model.onboarding_info\">\n            <div style=\"margin-bottom: -7px;\">\n        <div class=\"flex items-center justify-end w-full\" >\n            <div class=\"text-xs text-bold mr-4\">Edit information request<\/div>\n            <button\n                class=\"button rounded\"\n                sod-emit-event event-name=\"vm.panelState.structure.options.events.info_request_edit\"\n                event-data=\"vm.options.model\"><i class=\"fa fa-pencil\"><\/i>Edit\n            <\/button>\n        <\/div>\n    <\/div>\n        <\/div>\n\n        <\/div>\n        \n<fb-bind-html-compile template=\"vm.panelState.structure.options.template\" options=\"vm.panelState\" get-model=\"vm.getModel\"><\/fb-bind-html-compile>\n\n    <\/div>\n    <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/permission":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <rms-permission options=\"vm.panelState.structure.options\" model=\"vm.panelState.model\" get-model=\"vm.getModel\"><\/rms-permission>\n    <\/div>\n<\/div>","common\/app\/panel-content\/dialog-form-with-footer":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <div style=\"height:100%\" ng-class=\"vm.panelState.structure.options.entity_view_body_wrapper_class\">\n        <div class=\"form-content\">\n            <div ng-if=\"vm.panelState.structure.options.template_before_form\" ng-bind-html=\"vm.panelState.structure.options.template_before_form\">\n            <\/div>\n            <div class=\"form-block\" ng-class=\"{'has-form-footer': vm.panelState.structure.options.show_footer_form_buttons}\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"vm.panelState.structure.options.show_footer_form_buttons\"><\/fb-form-generator>\n\n            <\/div>\n            <div ng-if=\"vm.panelState.structure.options.template_after_form\" ng-bind-html=\"vm.panelState.structure.options.template_after_form\">\n            <\/div>\n        <\/div>\n        <div class=\"form-footer\" ng-if=\"vm.panelState.structure.options.form_buttons || vm.panelState.structure.options.show_footer_form_buttons\" ng-init=\"footer_buttons = (vm.panelState.structure.options.form_buttons) ? vm.panelState.structure.options.form_buttons : vm.panelState.structure.component.form.buttons\">\n            <fb-field-buttons-wrapper buttons=\"footer_buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>\n        <\/div>\n\n        <div ng-if=\"vm.panelState.structure.options.side_panel.active\"\n             class=\"entity-view-side-panel active\"\n             entity-side-panel on-backdrop-click=\"vm.panelState.structure.options.side_panel.event.on_backdrop_click\"\n        >\n            <div class=\"sp-backdrop\"><\/div>\n            <div class=\"sp-content\">\n                <async-panel options=\"vm.panelState.structure.options.side_panel.panel_content\" refresh=\"vm.refreshAsyncPanel\" is-refreshing=\"vm.isAsyncPanelRefreshing\"\n                        data='vm.panelState.model'\n            ><\/async-panel>\n                <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/panel-content-tab-horizontal":"<div class=\"async-panel-tab flex-style flex-column flex-nowrap\">\n    <div class=\"apt-menu-wrapper\">\n        <ul class=\"menu\" ng-init=\"vm.setActiveInit()\">\n            <li ng-repeat=\"panelContent in vm.visibleMenuTabs\" ng-bind=\"panelContent.name\"\n                ng-click=\"vm.setActive(panelContent)\" ng-class=\"{'active': vm.isActive(panelContent)}\"><\/li>\n        <\/ul>\n    <\/div>\n    <div class=\"apt-sub-menu-wrapper\" ng-if=\"vm.pageData.activeOption.siblings\">\n        <div class=\"apt-buttons-wrapper\">\n            <div\n                ng-repeat=\"tab in vm.pageData.activeOption.siblings\"\n                ng-class=\"{'active': vm.isActive(tab)}\"\n                ng-click=\"vm.setActive(vm.pageData.activeOption.parent, tab.key)\"\n                class=\"button-selection\">\n                <%tab.name%>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"apt-content-wrapper flex-item-grow-1\" style=\"min-height: 0;\">\n        <async-panel data=\"vm.data\" options=\"vm.pageData.activeOption\" refresh=\"vm.refreshAsyncPanel\"\n                     ng-if=\"vm.pageData.activeOption\" is-refreshing=\"vm.refreshing\"><\/async-panel>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-async-job-details":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block\">\n            <div class=\"text-base text-muted font-bold p-1-rem\" ng-bind=\"vm.panel.state.structure.options.header_requisition\"><\/div>\n            <div class=\"form-floating-wrapper\">\n                <div class=\"form-block-restrict\">\n                    <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"\n                                       get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel\" ng-if=\"vm.panelState.structure.options.review_panel\">\n    <div class=\"pinned-review-panel__header\" ng-bind=\"vm.panelState.structure.options.review_panel.header\">\n    <\/div>\n    <div class=\"pinned-review-panel__content\">\n        <div class=\"pinned-review-panel__content__item\"\n             ng-repeat=\"item in vm.panelState.structure.options.review_panel.items\">\n            <div ng-repeat=\"line in item\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"line.label\"><\/div>\n                <div ng-bind-html=\"line.value | trustAsHtml\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/rank-candidate-panel":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <ranking-candidates><\/ranking-candidates>\n\n    <div class=\"form-footer\"\n            ng-init=\"footer_buttons = vm.panelState.structure.component.form.buttons\">\n        <fb-field-buttons-wrapper buttons=\"footer_buttons\" type=\"'inline'\"\n                                    name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/dialog-list-filter":"<rms-list-filter options=\"vm.panelState.structure.options\" hide-filter=\"true\"><\/rms-list-filter>","common\/app\/panel-content\/workflow-async-offer-contract-selection":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper offer\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\" >\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div style=\"margin-bottom: -7px;\">\n        <div class=\"flex items-center justify-end w-full\" >\n            <div class=\"text-xs text-bold mr-4\">Refresh the viewer if it does not load<\/div>\n            <button ng-click=\"vm.panelState.structure.refreshViewer()\" class=\"button small default no-margin\">Refresh Viewer<\/button>\n        <\/div>\n    <\/div>\n    <\/div>\n\n                <div class=\"form-floating-wrapper\">\n        <div class=\"form-block-restrict\">\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"\n                               get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n        <\/div>\n    <\/div>\n    <hr\/>\n    <div style=\"height: 600px;\">\n        <sod-document-library-google-doc\n            url=\"vm.panelState.structure.options.preview_url\"\n            mime-type=\"vm.panelState.structure.options.mime_type\"\n            ng-if=\"vm.panelState.structure.options.preview_url\"\n            refresh=\"vm.panelState.structure.refreshViewer\"\n        ><\/sod-document-library-google-doc>\n    <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-summary":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"ww-content-panel ww-content-summary\">\n        <div class=\"ww-content-summary-overview\" ng-bind-html=\"vm.panelState.structure.options.overview\"><\/div>\n        <div class=\"ww-content-summary-info\" ng-repeat=\"info in vm.panelState.structure.options.info\" ng-bind-html=\"info\">\n\n        <\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/tabs\/resume":"<div class=\"standard-header\" ng-if=\"vm.panelState.structure.component.form\">\n    <div class=\"stretch-limit\">\n        <div class=\"actions\">\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\"><\/fb-form-generator>\n        <\/div>\n    <\/div>\n<\/div>\n<candidate-profile-tab ng-class=\"{'no-form': !vm.panelState.structure.component.form, 'has-form': vm.panelState.structure.component.form}\"><\/candidate-profile-tab>","common\/app\/panel-content\/tabs\/interview":"<div class=\"dialog-details\">\n    <div class=\"row\">\n        <div class=\"columns small-12\"\n        >\n            <div class=\"dialog-details-items\">\n\n\n                <div class=\"row\" ng-if=\"vm.panelState.model.model.reason_text\">\n                    <div class=\"columns small-4\">\n                        Candidate Response\n                    <\/div>\n                    <div class=\"columns small-8 text-bold\" ng-bind-html=\"vm.panelState.model.model.reason_text\">\n                                            <\/div>\n                <\/div>\n\n                <div class=\"row\" ng-if=\"vm.panelState.model.model.interview_type\">\n                    <div class=\"columns small-4\">\n                        Type\n                    <\/div>\n                    <div class=\"columns small-8 text-bold\">\n                        <%vm.panelState.model.model.interview_type%>\n                    <\/div>\n                <\/div>\n                <div class=\"row\">\n                    <div class=\"columns small-4\">\n                        Stage\n                    <\/div>\n                    <div class=\"columns small-8 text-bold\">\n                        <%vm.panelState.model.model.interview_stage%>\n                    <\/div>\n                <\/div>\n                <div class=\"row\">\n                    <div class=\"columns small-4\">\n                        Status\n                    <\/div>\n                    <div class=\"columns small-8\">\n                        <span class=\"label interview-status status-<%vm.panelState.model.model.interview_status_id%>\" ng-bind=\"vm.panelState.model.model.interview_status\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"row\">\n                    <div class=\"columns small-4\">\n                        Start\n                    <\/div>\n                    <div class=\"columns small-8 text-bold\">\n                        <% vm.panelState.model.model.start_date%> <% vm.panelState.model.model.start_time%>\n                    <\/div>\n                <\/div>\n                <div class=\"row\">\n                    <div class=\"columns small-4\">\n                        End\n                    <\/div>\n                    <div class=\"columns small-8 text-bold\">\n                        <% vm.panelState.model.model.end_date%> <% vm.panelState.model.model.end_time%>\n                        <div><%vm.panelState.model.model.timezone%><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"row\">\n                    <div class=\"columns small-4\">\n                        Medium\n                    <\/div>\n                    <div class=\"columns small-8 text-bold\"  ng-bind=\"vm.panelState.model.model.interview_medium\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div><\/div>\n            <div class=\"dialog-instructions\" ng-if=\"vm.panelState.model.model.interview_instructions\">\n                <div class=\"text-bold\">Interview Instruction<\/div>\n                <p ng-bind-html=\"vm.panelState.model.model.interview_instructions\"><\/p>\n            <\/div>\n        <\/div>\n        <div class=\"columns small-4\" ng-if=\"vm.panelState.structure.options.buttons.length\">\n            <div class=\"dialog-detail-actions\" ng-if=\"vm.panelState.model.model.interview_status_id === 2\">\n                <h5>Actions<\/h5>\n                <ul>\n                    <li ng-repeat=\"element in vm.panelState.structure.options.buttons\">\n                        <fb-field-button element=\"element\"><\/fb-field-button>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n        <div class=\"columns small-12\">\n            <div class=\"dialog-details-footer\">\n                <div class=\"text-small\">\n                    Created By - <%vm.panelState.model.model.creator.label%>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/tabs\/activity":"<rms-activities activity-options=\"vm.panelState.structure.options.activities\" ng-if=\"vm.panelState.structure.options.activities\"><\/rms-activities>\n<div ng-if=\"!vm.panelState.structure.options.activities\">Opps<\/div>","common\/app\/panel-content\/workflow-async-form-two-forms":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"ww-content-panel form-block \">\n        <div class=\"form-floating-wrapper\">\n            <div class=\"form-block-restrict\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n            <\/div>\n\n            <div class=\"form-floating\" ng-if=\"vm.panelState.structure.options.form\">\n                <div>\n                    <h6 ng-if=\"vm.panelState.structure.options.form_title\" ng-bind=\"vm.panelState.structure.options.form_title\"><\/h6>\n                    <fb-form-generator fb-data=\"vm.panelState.structure.options.form\"><\/fb-form-generator>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/list-wo-entity":"<div class=\"form-block\" ng-if=\"vm.panelState.structure.component.form\">\n    <fb-form-generator fb-data=\"vm.panelState.structure.component.form\"><\/fb-form-generator>\n<\/div>\n<rms-list-template-view options=\"vm.panelState.structure.options\" ng-model=\"vm.panelState.model\" refresh=\"vm.refreshDs\"><\/rms-list-template-view>\n","common\/app\/panel-content\/workflow-offer-contract-provider-selection":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper offer\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\" >\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div style=\"margin-bottom: -7px;\">\n        <div class=\"flex items-center justify-end w-full\" >\n            <div class=\"text-xs text-bold mr-4\">Refresh the viewer if it does not load<\/div>\n            <button ng-click=\"vm.panelState.structure.refreshViewer()\" class=\"button small default no-margin\">Refresh Viewer<\/button>\n        <\/div>\n    <\/div>\n    <\/div>\n\n                <div class=\"form-block ww-content-panel form-block-restrict\">\n        <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n    <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-async-offer-details":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper offer\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block \" >\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n\n                <div class=\"form-floating-wrapper\">\n        <div class=\"form-block-restrict\">\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"\n                               get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n        <\/div>\n    <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/list-view-panel":"<async-panel-list-view model=\"vm.panelState.model\" options=\"vm.panelState.structure.options\" get-model=\"vm.getModel\" set-validation-model=\"vm.setValidationModel\"><\/async-panel-list-view>","common\/app\/panel-content\/workflow-async-form":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n                    <div class=\"form-block ww-content-panel form-block-restrict\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n            <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/email-template":"<rms-email-template\n    class=\"rms-email-template email-template\"\n    options=\"vm.panelState.structure.options\"\n    ng-model=\"vm.panelState.model\"><\/rms-email-template>","common\/app\/panel-content\/workflow-async-offer-form":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        \n    <div class=\"review-panel-wrapper offer offer-form-panel\">\n        <div class=\"offer-form-wrapper\">\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n\n            <div class=\"generic-approval-flow__section\" ng-if=\"vm.panelState.structure.options.no_placeholder\">\n                <div class=\"generic-approval-flow__header\">\n                    <div class=\"generic-approval-flow__alert error-color\">\n                        <span class=\"fa-stack\">\n                            <i class=\"fa fa-circle-thin fa-stack-2x\"><\/i>\n                            <i class=\"fa fa-stack-1x fa-times\"><\/i>\n                        <\/span>\n                        No Placeholders found in selected contract. Press Previous to select a contract with placeholders\n                    <\/div>\n                <\/div>\n                <hr class=\"generic-approval-flow__divider generic-approval-flow__divider--no-top\">\n            <\/div>\n\n            <div class=\"form-block ww-content-panel form-block-restrict\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n            <\/div>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/entity-list-filter":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <rms-list-filter options=\"vm.panelState.structure.options\" hide-filter=\"true\"><\/rms-list-filter>\n    <div class=\"form-block\">\n                <fb-form-generator ng-if=\"vm.panelState.structure.component.form\" fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"><\/fb-form-generator>\n    <\/div>\n        <\/div>\n<\/div>","common\/app\/panel-content\/workflow-async-onboarding-acceptance-form":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        \n<div class=\"review-panel-wrapper offer offer-form-panel\">\n    <div class=\"offer-form-wrapper\">\n                <div class=\"form-block ww-content-panel form-block-restrict\">\n            <fb-bind-html-compile template=\"vm.panelState.structure.options.template\" options=\"vm.panelState\" get-model=\"vm.getModel\"><\/fb-bind-html-compile>\n        <\/div>\n    <\/div>\n    <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-candidate-acceptance":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        \n    <div class=\"review-panel-wrapper offer\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block\">\n            <div class=\"offer-candidate-details\"\n    ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div class=\"flex\">\n        <div class=\"offer-candidate-details__candidate-image-wrapper\">\n            <img src=\"<% offer_info.candidate.thumbnail %>\" class=\"offer-candidate-details__candidate-image\" \/>\n        <\/div>\n        <div class=\"flex-1\">\n            <div class=\"flex mb-1 \">\n                <div class=\"offer-candidate-details__candidate-name flex-1\" ng-bind=\"offer_info.candidate.full_name\">\n                <\/div>\n            <\/div>\n            <div class=\"offer-candidate-details__content\"\n            >\n                <div ng-if=\"offer_info.candidate.expected_salary_info\">\n                    Asking for \n                    <% offer_info.candidate.expected_salary ? offer_info.candidate.expected_salary : \"Not specified\" %>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.last_drawn_info\">\n                    Last Drawn \n                    <% offer_info.candidate.last_drawn ? offer_info.candidate.last_drawn : \"Not specified\" %>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n\n            <fb-bind-html-compile template=\"vm.panelState.structure.options.template\" options=\"vm.panelState\" get-model=\"vm.getModel\"><\/fb-bind-html-compile>\n        <\/div>\n        <div class=\"pinned-review-panel offer\"\n     ng-init=\"offer_info = vm.panelState.model.offer_info\"\n>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"offer_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"offer_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"offer_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"offer_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"offer_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"offer_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"offer_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.candidate.candidate_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"offer_info.candidate.candidate_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"offer_info.candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.candidate.recruiter_provider\">\n                    <div class=\"pinned-review-panel__content__item__label\">Recruiter<\/div>\n                    <div ng-bind=\"offer_info.candidate.recruiter_provider\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"offer_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"offer_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"offer_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.reporting_supervisor\">\n                    <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                    <div  ng-bind=\"offer_info.requisition.reporting_supervisor\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.requisition.cost_centre\">\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div  ng-bind=\"offer_info.requisition.cost_centre\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.job.working_arrangement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                    <div ng-bind=\"offer_info.job.working_arrangement | stringArray: ', '\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n        <div class=\"pinned-review-panel__content__item inline-content\">\n            <div ng-if=\"offer_info.offer_details.entity_workflow_setting\">\n                <div class=\"pinned-review-panel__content__item__label\">Entity Workflow Setting<\/div>\n                <div ng-bind=\"offer_info.offer_details.entity_workflow_setting\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.workflow_group\">\n                <div class=\"pinned-review-panel__content__item__label\">Workflow Group<\/div>\n                <div ng-bind=\"offer_info.offer_details.workflow_group\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                <div ng-bind=\"offer_info.offer_details.offer_identifier\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                <div ng-bind=\"offer_info.offer_details.offered_position\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                <div ng-bind=\"offer_info.offer_details.salary\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.remuneration_after_probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Remuneration After Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.remuneration_after_probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_wage_options\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_wage_options\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.deadline\">\n                <div class=\"pinned-review-panel__content__item__label\">Acceptance Deadline<\/div>\n                <div ng-bind=\"offer_info.offer_details.deadline\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.start_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.start_date\"><\/div>\n            <\/div>\n            <div>\n                <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                <div ng-bind=\"offer_info.offer_details.employment_type\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.job_grade\">\n                <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                <div ng-bind=\"offer_info.offer_details.job_grade\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.duration_string\">\n                <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                <div ng-bind=\"offer_info.offer_details.duration_string\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.projected_end_date\">\n                <div class=\"pinned-review-panel__content__item__label\">Expected Contract End Date<\/div>\n                <div ng-bind=\"offer_info.offer_details.projected_end_date\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.annual_leave\">\n                <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                <div ng-bind=\"offer_info.offer_details.annual_leave\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_arrangement\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Arrangement<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_arrangement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.working_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.working_hours_desc ? offer_info.offer_details.working_hours + ' [' + offer_info.offer_details.working_hours_desc +']' : offer_info.offer_details.working_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.probation_notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                <div ng-bind=\"offer_info.offer_details.probation_notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.period_till_leave_entitlement\">\n                <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                <div ng-bind=\"offer_info.offer_details.period_till_leave_entitlement\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.notice_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.notice_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.weekly_work_hours\">\n                <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                <div ng-bind=\"offer_info.offer_details.weekly_work_hours\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.reporting_supervisor\">\n                <div class=\"pinned-review-panel__content__item__label\">Reporting Supervisor<\/div>\n                <div ng-bind=\"offer_info.offer_details.reporting_supervisor\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.sign_on_bonus_period\">\n                <div class=\"pinned-review-panel__content__item__label\">Sign On Bonus Vesting Period<\/div>\n                <div ng-bind=\"offer_info.offer_details.sign_on_bonus_period\"><\/div>\n            <\/div>\n            <div ng-if=\"offer_info.offer_details.preferred_name\">\n                <div class=\"pinned-review-panel__content__item__label\">Preferred Name<\/div>\n                <div ng-bind=\"offer_info.offer_details.preferred_name\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n            <div ng-repeat=\"leave_entitlement in offer_info.offer_details.leave_entitlements\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                <div ng-if=\"!leave_entitlement.amount_period\">\n                    <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"leave_entitlement.amount_period\">\n                    <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n            <div ng-repeat=\"benefit_type in offer_info.offer_details.benefit_types\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                <div ng-bind=\"benefit_type.amount\"><\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n            <div ng-repeat=\"salary_component in offer_info.offer_details.salary_components\">\n                <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                <div ng-if=\"!salary_component.amount_period\">\n                    <div ng-bind=\"salary_component.amount_string\"><\/div>\n                <\/div>\n                <div ng-if=\"salary_component.amount_period\">\n                    <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span>\n                    <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                    <span ng-bind=\"salary_component.amount_period\"><\/span>\n                <\/div>\n            <\/div>\n            <div class=\"font-bold\" ng-if=\"offer_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in offer_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n            <div ng-repeat=\"attachment in offer_info.offer_details.attachments\">\n                <div ><a ng-href=\"<% attachment.file_url %>\" target=\"_blank\"><i class=\"fa fa-file\"><\/i><span ng-bind=\"attachment.document_name\"><\/span><\/a><\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"offer_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"offer_info.info_request_details.status\">\n                    <div class=\"content-status\"  style=\"margin-bottom: auto;\">\n                        <div class=\"content-status-bg\" ng-class=\"offer_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"offer_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.form_template_name\">\n                    <div class=\"mb-2\"  ng-bind=\"offer_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.instruction\">\n                    <div class=\"mb-2\"  ng-bind-html=\"offer_info.info_request_details.instruction\"><\/div>\n                <\/div>\n                <div ng-if=\"!offer_info.info_request_details.completed_at\"> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n                    <div ng-if=\"offer_info.info_request_details.deadline\">\n                        <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                        <div ng-bind=\"offer_info.info_request_details.deadline\"><\/div>\n                    <\/div>\n\n                <\/div>\n                <div ng-if=\"offer_info.info_request_details.completed_at\">\n                <div class=\"pinned-review-panel__content__item__label\" >\n                    Completed At\n                <\/div>\n                <div ng-bind=\"offer_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n                <div> <!-- Only show if Information Request comes after Offer Status -> Candidate Accepted -->\n\n                <\/div>\n\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.health_security_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Health & Security Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-init=\"health_check_status = offer_info.health_security_details.health_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Health check\n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.health_check_name\"><\/div>\n                        <span ng-if=\"health_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"health_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"health_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.health_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.health_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n                <div ng-init=\"security_check_status = offer_info.health_security_details.security_check_result\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Security check \n                    <\/div>\n                    <div class=\"flex justify-between\">\n                        <div ng-bind=\"offer_info.health_security_details.security_check_name\"><\/div>\n                        <span ng-if=\"security_check_status == 'pass'\"'><span class=\"text-green\"><i class=\"fa fa-check text-green\"><\/i> Passed<\/span><\/span><span ng-if=\"security_check_status == 'fail'\"'><span class=\"text-red\"><i class=\"fa fa-ban text-red\"><\/i> Failed<\/span><\/span><span ng-if=\"security_check_status == 'na'\"'><span><i class=\"fa fa-minus\"><\/i> N\/A<\/span><\/span>\n                    <\/div>\n                <\/div>\n                <ul ng-if=\"offer_info.health_security_details.security_check_documents\">\n                    <li ng-repeat=\"doc in offer_info.health_security_details.security_check_documents\">\n                        <rms-document-viewer-dialog\n                            name=\"doc.document_name\"\n                            label=\"<%doc.document_name%>\"\n                            download-url=\"doc.download_link\"\n                            mime-type=\"doc.mime_type\"\n                            file-url=\"doc.view_link\"\n                        ><\/rms-document-viewer-dialog>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.approval\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Approval\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item  approval-content\">\n                <div ng-repeat=\"approval in offer_info.approval.timeline\" ng-if=\"approval.acted_on || approval.requested_on\"\n                    sod-collapsible click-target=\".click-to-hide\"\n                    hide-target=\".content-to-hide\"\n                    show-on-default=\"no\"\n                    icon=\"ellipsis-h\"\n                    >\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.acted_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg\" ng-class=\"{\n                                    'bg-yellow': (approval.status.value == 1 || approval.status.value == null),\n                                    'bg-green': (approval.status.value == 2),\n                                    'bg-red': (approval.status.value == 4 || approval.status.value == 3)\n                                }\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status.label\"><\/div>\n                                <div class=\"ml-2\">\n                                    <i class=\"fa default fa-inherit-color\" ng-class=\"{\n                                        'fa-exclamation': (approval.status.value == 1 || approval.status.value == null),\n                                        'fa-reply fa-flip-horizontal': approval.status.value == 2,\n                                        'fa-check': approval.status.value == 2,\n                                        'fa-reply': (approval.status.value == 4 || approval.status.value == 3)\n                                    }\"><\/i>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"approval.email\" ng-if=\"approval.requested_on\">\n                        <div class=\"approver-remarks\">\n                            <div class=\"approver-status\">\n                                <div class=\"content-status-bg bg-yellow\"><\/div>\n                                <div class=\"content-status-text\" ng-bind=\"approval.status\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/sod-tool-tippy>\n\n                    <div class=\"approver-remarks\" ng-if=\"approval.acted_on\">\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 3\">\n                            Rejected On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 2\">\n                            Approved On\n                        <\/div>\n                        <div class=\"pinned-review-panel__content__item__label\" ng-if=\"approval.status.value == 4\">\n                            Requested Amendment On\n                        <\/div>\n                        <div ng-bind=\"approval.acted_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-remarks\" ng-if=\"approval.requested_on\">\n                        <div class=\"pinned-review-panel__content__item__label\">Requested On<\/div>\n                        <div ng-bind=\"approval.requested_on\"><\/div>\n                    <\/div>\n                    <div class=\"approver-panel\">\n                        <!-- <div class=\"approver-image-wrapper\">\n                            <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                        <\/div> -->\n                        <div class=\"approver-image-wrapper\">\n                            <div class=\"generic-approval-flow__activity-log__card__thumbnail\">\n                                <img src=\"<% approval.profile_image %>\" class=\"approver-image\" \/>\n                            <\/div>\n                        <\/div>\n                        <div class=\"approver-detail\">\n                            <sod-tool-tippy label=\"approval.email\">\n                                <div ng-bind=\"approval.name\"><\/div>\n                            <\/sod-tool-tippy>\n                            <sod-tool-tippy label=\"approval.org_email\">\n                                <div ng-if=\"approval.on_behalf\" ng-bind-html=\"approval.on_behalf\"><\/div>\n                            <\/sod-tool-tippy>\n\n                            <div>\n                                <div class=\"approver-remarks\" ng-if=\"approval.note\">\n                                    <div class=\"pinned-review-panel__content__item__label\">\n                                        Remarks\n                                    <\/div>\n                                <\/div>\n                                <div ng-bind-html=\"approval.note | limitToEllipsis:56\" class=\"content-to-hide half-text\"><\/div>\n                                <div ng-bind-html=\"approval.note\" class=\"content-to-hide all-text\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"flex justify-end click-to-hide collapsible-is-hidden\">\n                        <i class=\"fa default fa-ellipsis-h\" ng-if=\"approval.note.length > 56\"><\/i>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\"  ng-if=\"offer_info.contract\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Contract Template\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n                        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Template<\/div>\n                    <div ng-bind=\"offer_info.contract.contract_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.internal_endorsement_deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Internal Deadline<\/div>\n                    <div ng-bind=\"offer_info.contract.internal_endorsement_deadline\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.selected_default_email_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Selected Email Template<\/div>\n                    <div ng-bind=\"offer_info.contract.selected_default_email_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div ng-repeat=\"signer in offer_info.contract.signers\" ng-show=\"$index == 0\" class=\"pinned-review-panel__content__item__label\">Signers<\/div>\n                    <div><\/div>\n                <\/div>\n                <div ng-if=\"offer_info.contract.signers\">\n                    <div class=\"pinned-review-panel-content w-full\">\n                        <div ng-repeat=\"signer in offer_info.contract.signers\">\n                            <div class=\"flex\">\n                                <div style=\"width: 33%;\" class=\"font-normal\" ng-bind=\"signer.value_string\"><\/div>\n                                <div class=\"flex-auto\" ng-bind=\"signer.full_name\"><\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"offer_info.contract.internal_signer_note\">\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_internal_signer_note\">\n                        <span>View Internal Signer Note<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n    <\/div>\n    \n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/report-builder-panel":"<report-builder options=\"vm.panelState.structure.options\" ng-model=\"vm.panelState.model\" get-model=\"vm.getModel\"><\/report-builder>","common\/app\/panel-content\/workflow-async-view-details":"<div class=\"get-started-image\" style=\"background-image: url('<%vm.panelState.structure.options.background_image%>')\">\n\n<\/div>\n<div class=\"get-started-form\">\n\n    <div class=\"get-started-center\">\n        <div class=\"get-started-heading\">\n            <h1 ng-bind=\"vm.panelState.structure.options.labels.form_header\"><\/h1>\n        <\/div>\n        <div class=\"get-started-content pb-20\" >\n            <div style=\"padding: 0.5rem 1rem 0;\">\n                <p ng-bind=\"vm.panelState.structure.options.labels.line1\"><\/p>\n                <p ng-bind=\"vm.panelState.structure.options.labels.line2\"><\/p>\n                <p ng-bind=\"vm.panelState.structure.options.labels.line3\"><\/p>\n            <\/div>\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" model=\"model\"\n                               validation=\"content.validation\"><\/fb-form-generator>\n            <div class=\"row secondary-actions\">\n                <div class=\"small-12 columns\" ng-repeat=\"element in vm.panelState.structure.options.secondary_actions\">\n                    <fb-field-anchor element='element'><\/fb-field-anchor>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/email-box":"<rms-activity-main-input-panel options=\"vm.panelState.structure.options\" template=\"email-box\" class=\"rms-activities-input-panel email-box\"><\/rms-activity-main-input-panel>","common\/app\/panel-content\/workflow-form-side-panel-html":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n            <div class=\"review-panel-wrapper\">\n        <div class=\"ww-content-panel ww-content-panel--flex form-block\">\n            <div class=\"text-base text-muted font-bold p-1-rem\" ng-bind=\"vm.panel.state.structure.options.header_requisition\"><\/div>\n            <div class=\"form-floating-wrapper\">\n                <div class=\"form-block-restrict\">\n                    <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\"\n                                       get-model=\"vm.panelState.getModel\" hide-buttons=\"true\"><\/fb-form-generator>\n                <\/div>\n            <\/div>\n        <\/div>\n        <fb-bind-html-compile ng-if=\"vm.panelState.structure.options.template\" class=\"review-panel\" template=\"vm.panelState.structure.options.template\" options=\"vm.panelState\"><\/fb-bind-html-compile>\n    <\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-onboarding-review-frontier":"<div class=\"pt-15\">\n    <div class=\"job-create-review recruiter-selection-wrapper\">\n        <div class=\"recruiter-selection-list\" style=\"overflow-y: hidden!important;\">\n            <div class=\"job-create-review\">\n                <div class=\"jobs-info\">\n                    <div ng-if=\"vm.options.model.sub_personal_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_personal_frontier_subform; employee = vm.options.model.hid_selected_data.employee \">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Employee &amp; Personal<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Company ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_company_identifier || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employee Id<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\" ng-if=\"employee.generated\">\n                                    <span ng-if=\"!employee.sync_completed\">\n                                        Generated at Sync (Expected Next Id : &lt;% employee.user_id %&gt;)\n                                    <\/span>\n\n                                    <span ng-if=\"employee.sync_completed\"\n                                        class=\"text-muted\"\n                                        ng-bind=\"employee.user_id || '-'\">\n                                    <\/span>\n                                <\/div>\n                                <div class=\"columns small-9\" ng-if=\"!employee.generated\">\n                                    <span class=\"text-muted\" ng-bind=\"employee.user_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Position ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_position_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Salutation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_salutation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>First Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_first_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Display Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.gender_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Status<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.marital_status_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Marital Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.marital_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Race<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.race_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Religion<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.religion_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.nationality || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Preferred Personal Email<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.text_preferred_personal_email || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Home Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_home_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Mobile Contact Number<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_contact_number || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.contact_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 1<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_1 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Address 2<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_address_2 || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_postal_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.country_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Primary Tax Address<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.primary_tax_address || '-'\"><\/span>\n                                <\/div>\n                            <\/div>                          \n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_job_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_job_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Job<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employment Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_employment_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_currency || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Offered Remuneration<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_offered_remuneration || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Remuneration Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_remuneration_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Expected Start Date<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_expected_start_date || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_identification_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_identification_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Identification<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.identification_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_identification_country || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Issued<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_issued || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date Expiry<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.fmt_date_expiry || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                             <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Is Citizen<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.is_citizen || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_bank_details_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_bank_details_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Bank Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_bank_code || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Bank Branch Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_bank_branch || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Account No<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_account_no || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Pay Method<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.pay_method|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.to_name|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Pay Frequency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.pay_frequency|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_education_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_education_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Education<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_school || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Education Level<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.education_level_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Qualification<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_qualification_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Field of Study<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_field_of_study || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Highest Education<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.highest_education || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.school_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>School Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.school_country || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Minor<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.minor || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Department<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.department || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_payroll_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_payroll_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Payroll Details<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Income Tax Identifier<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_income_tax_identifier || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>CPF \/ EPF Identifier<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_cpf_identifier || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_work_experience_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_work_experience_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Work Experience<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Job Title<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_job_title || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Company Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_company_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Industry<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_industry || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Summary<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                <span class=\"text-muted\" ng-bind=\"item.summary_cleaned || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>From Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_from_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Month<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_month || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>To Year<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_to_year || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Workplace Location<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_workplace_location || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Reason for Leaving<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_reason_for_leaving || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currency<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_currency || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Drawn Monthly Salary<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_drawn_salary || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Employer Size<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.employer_size|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Region<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.region|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Municipality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.municipality|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Postal Code<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.postal_code|| '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Currently employed here<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.currently || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                    <div ng-if=\"vm.options.model.sub_family_information_frontier_subform\" ng-init=\"dataItems = vm.options.model.sub_family_information_frontier_subform\">\n                        <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section job-posting\">\n\n    <div class=\"info-section-header\">\n        <h6>\n            <i class=\"fa default fa-angle-down\"><\/i><span class=\"text-bold ng-binding\" style=\"padding-left: 5px;\">Family Information<\/span><br>\n        <\/h6>\n    <\/div>\n    <div class=\"info-section-content\" style=\"padding-bottom: 0px!important;\">\n        <div class=\"summary_segment\">\n            <div class=\"content_segment\">\n                <div class=\"list-style-type__none review-item-list-row-wrapper\">\n                    <div ng-repeat=\"item in dataItems\">\n                        <div class=\"row py-2 bg-grey-lighter mb-4 collapse rounded-sm\">\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>First Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_first_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Last Name<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_last_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Full Name of Family Member<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_full_name || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Contact Relation<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_contact_relation || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Gender<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_gender || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Date of Birth<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.dt_date_of_birth || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>National ID<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.txt_national_id || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Country<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_identification_country || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Identification Type<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.enum_identification_type || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"review-item-list-row\">\n                                <div class=\"columns small-3\">\n                                    <div class=\"text-teal-light\">\n                                        <span>Nationality<\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"columns small-9\">\n                                    <span class=\"text-muted\" ng-bind=\"item.sel_nationality || '-'\"><\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>                    <\/div>\n\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/google_mfa_form":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n        <div class=\"get-started-form\">\n\n    <div class=\"get-started-center\">\n        <div class=\"get-started-content pb-20\" >\n            <div style=\"padding: 0.5rem 1rem 0;\">\n                <p ng-bind=\"vm.panelState.structure.options.labels.line1\"><\/p>\n                <p ng-bind=\"vm.panelState.structure.options.labels.line2\"><\/p>\n                <p ng-bind=\"vm.panelState.structure.options.labels.line3\"><\/p>\n            <\/div>\n            <div ng-if=\"!vm.panelState.structure.options.hide_form\">\n                <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" fb-model=\"vm.panelState.model\" get-model=\"vm.panelState.getModel\" set-model=\"vm.panelState.setModel\"><\/fb-form-generator>\n            <\/div>\n            <div  ng-if=\"vm.panelState.structure.options.hide_form\" class=\"flex-column-content-center p-2-rem\">\n                <div ng-bind=\"vm.panelState.structure.options.empty_form_msg\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/panel-content\/workflow-steps":"<panel-content-tab panel-contents=\"vm.panelState.structure.options.steps\" step-model=\"vm.panelState.model\" settings=\"vm.panelState.structure.options.settings\" template-name=\"panel-content-flow\"><\/panel-content-tab>","common\/app\/panel-content\/two_factor_dialog":"<div class=\"get-started-image\" style=\"background-image: url('<%vm.panelState.structure.options.background_image%>')\">\n\n<\/div>\n<div class=\"get-started-form\">\n\n    <div class=\"get-started-center\">\n        <div class=\"get-started-heading\">\n            <h1 ng-bind=\"vm.panelState.structure.options.labels.form_header\"><\/h1>\n        <\/div>\n        <div class=\"get-started-content pb-20\" >\n            <div style=\"padding: 0.5rem 1rem 0;\">\n                <p ng-bind=\"vm.panelState.structure.options.labels.line1\"><\/p>\n                <p ng-bind=\"vm.panelState.structure.options.labels.line2\"><\/p>\n                <p ng-bind=\"vm.panelState.structure.options.labels.line3\"><\/p>\n            <\/div>\n            <fb-form-generator fb-data=\"vm.panelState.structure.component.form\" model=\"model\"\n                               validation=\"content.validation\"><\/fb-form-generator>\n            <div class=\"row secondary-actions\">\n                <div class=\"small-12 columns\" ng-repeat=\"element in vm.panelState.structure.options.secondary_actions\">\n                    <fb-field-anchor element='element'><\/fb-field-anchor>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/panel-content\/workflow-onboarding-expired":"<div class=\"wizard-workflow-async-form-wrapper\">\n    <div class=\"ww-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h4 ng-bind=\"vm.panelState.structure.options.header.title\"><\/h4>\n    <\/div>\n    <div class=\"ww-content\">\n        <div class=\"review-panel-wrapper offer\">\n    <div class=\"ww-content-panel ww-content-panel--flex form-block doc-preview-wrapper\">\n        <div ng-if=\"vm.panelState.structure.options.show_header\">\n        <div class=\"offer-candidate-details\"\n    ng-init=\"onboarding_info = vm.panelState.model.onboarding_info\">\n            <\/div>\n\n        <\/div>\n        <div class=\"workflow-review-step p-6\" ng-init=\"model = vm.panelState.model\" style=\"margin-top: -14px !important;\">\n    <div class=\"approval-whats-next\">\n        <div class=\"approval-header\" sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\" show-on-default=\"yes\" icon=\"angle\" class=\"info-section\" close-direction=\"down\" style=\"width: auto;\">\n            <h2 class=\"mb-0 info-section-header\" style=\"margin-left: -20px !important;\">\n                <i class=\"fa\"><\/i>\n                <i class=\"fa\" ng-class=\"model.header_icon_classes\"><\/i>\n                <%model.title%>\n            <\/h2>\n            <div class=\"approval-panel info-section-content\">\n                <ul class=\"approval-timeline\">\n                    <li ng-repeat=\"workflow_history in model.workflow_histories\">\n                        <div class=\"approval-history-icon\">\n                            <i class=\"fa\" ng-class=\"workflow_history.icon\" style=\"padding-left:11px;\"><\/i>\n                            <div class=\"approval-history-line\"><\/div>\n                        <\/div>\n                        <div class=\"approval-item-content\" ng-bind-html=\"workflow_history.message\">\n                        <\/div>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"line-separator\"><\/div>\n    <div class=\"approval-panel\" style=\"margin-top: 20px !important;\">\n        <div class=\"approver-status\">\n            <div class=\"flex-list-template-row-item__meta--horizontal-labels text-right\">\n                <div class=\"flex child-pad--extra-small items-center justify-start\">\n                    <div class=\"child-pad__item\">\n                        <a sod-emit-event event-name=\"vm.panelState.structure.options.events.info_request_resend\" event-data=\"vm.options.model\">\n                            <span>Resend Information Request<\/span>\n                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n    <\/div>\n    <div class=\"pinned-review-panel offer\" ng-init=\"onboarding_info = vm.panelState.model ? vm.panelState.model.onboarding_info : vm.options.model.onboarding_info;\">\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.onboarding_candidate\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Candidate Onboarding\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"content-status\" ng-if=\"onboarding_info.onboarding_candidate.sync_status\" style=\"align-items: center\">\n                    <div class=\"content-status-bg bg-<%onboarding_info.onboarding_candidate.sync_status_color%>\"><\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.sync_status\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.candidate_identifier\">\n                    <div class=\"pinned-review-panel__content__item__label\">Candidate ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.candidate_identifier\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.onboarding_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Onboarding ID<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.onboarding_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.full_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Full Name<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.full_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.onboarding_candidate.provider_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Provider<\/div>\n                    <div ng-bind=\"onboarding_info.onboarding_candidate.provider_name\"><\/div>\n                <\/div>\n                <div class=\"pinned-review-panel__content__item__label\">\n                    <a sod-emit-event event-name=\"vm.panelState.structure.options.special_event_buttons.view_candidate_profile\">\n                        <span>View Candidate Profile<\/span>\n                    <\/a>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <!--<div class=\"review-panel-detail-button\">view<\/div> -->\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Job\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 class=\"bold\" ng-bind=\"onboarding_info.job.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.job.job_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div><span ng-bind=\"onboarding_info.job.biz_entity_name\"><\/span> - <span ng-bind=\"onboarding_info.job.biz_profile\"><\/span><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Department<\/div>\n                    <div ng-bind=\"onboarding_info.job.department\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Office<\/div>\n                    <div ng-bind=\"onboarding_info.job.office\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Types<\/div>\n                    <div ng-bind=\"onboarding_info.job.employment_types| stringArray: ', '\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Salary Range<\/div>\n                    <div ng-bind=\"onboarding_info.job.salary_range\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.requisition\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Requisition\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <h4 ng-bind=\"onboarding_info.requisition.job_title\"><\/h4>\n                <\/div>\n                <div>\n                    <div ng-bind=\"onboarding_info.requisition.mr_ref_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.requisition.requisition_ref_id\">\n                    <div class=\"pinned-review-panel__content__item__label\">Requisition Slot<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.requisition_ref_id\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Cost Centre<\/div>\n                    <div ng-bind=\"onboarding_info.requisition.cost_centre\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.offer_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Offer\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                                                                                    <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offer ID<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offer_identifier\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Position<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.offered_position\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Offered Remuneration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.salary\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_wage_options\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Wage Supplement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_wage_options\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.start_date\">\n                    <div class=\"pinned-review-panel__content__item__label\">Expected Start Date<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.start_date\"><\/div>\n                <\/div>\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employment Type<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.employment_type\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.job_grade\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job Grade<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.job_grade\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.duration_string\">\n                    <div class=\"pinned-review-panel__content__item__label\">Contract Duration<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.duration_string\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.annual_leave\">\n                    <div class=\"pinned-review-panel__content__item__label\">Annual Leave<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.annual_leave\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.working_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Working Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.working_hours\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Probation Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.probation_notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period during Probation<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.probation_notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.period_till_leave_entitlement\">\n                    <div class=\"pinned-review-panel__content__item__label\">Period Till Leave Entitlement<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.period_till_leave_entitlement\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.notice_period\">\n                    <div class=\"pinned-review-panel__content__item__label\">Notice Period<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.notice_period\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.offer_details.weekly_work_hours\">\n                    <div class=\"pinned-review-panel__content__item__label\">Weekly Work Hours<\/div>\n                    <div ng-bind=\"onboarding_info.offer_details.weekly_work_hours\"><\/div>\n                <\/div>\n                                                                                    <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.leave_entitlements.length > 0\">Leave Entitlement(s)<\/div>\n                <div ng-repeat=\"leave_entitlement in onboarding_info.offer_details.leave_entitlements\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"leave_entitlement.name\"><\/div>\n                    <div ng-if=\"!leave_entitlement.amount_period\">\n                        <div ng-bind=\"leave_entitlement.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"leave_entitlement.amount_period\">\n                        <div><span ng-bind=\"leave_entitlement.amount\"><\/span> <span ng-bind=\"leave_entitlement.amount_period\"><\/span><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.benefit_types.length > 0\">Benefit Type(s)<\/div>\n                <div ng-repeat=\"benefit_type in onboarding_info.offer_details.benefit_types\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"benefit_type.name\"><\/div>\n                    <div ng-bind=\"benefit_type.amount\"><\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.salary_components.length > 0\">Salary Component(s)<\/div>\n                <div ng-repeat=\"salary_component in onboarding_info.offer_details.salary_components\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"salary_component.name\"><\/div>\n                    <div ng-if=\"!salary_component.amount_period\">\n                        <div ng-bind=\"salary_component.amount_string\"><\/div>\n                    <\/div>\n                    <div ng-if=\"salary_component.amount_period\">\n                        <span ng-bind=\"salary_component.currency\"><\/span> <span ng-bind=\"salary_component.amount\"><\/span> \n                        <span ng-if=\"salary_component.amount_period_id!=5\"> per <\/span>\n                        <span ng-bind=\"salary_component.amount_period\"><\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"font-bold\" ng-if=\"onboarding_info.offer_details.additional_terms.length > 0\">Additional Term(s)<\/div>\n                <div ng-repeat=\"additional_term in onboarding_info.offer_details.additional_terms\">\n                    <div class=\"pinned-review-panel__content__item__label\" ng-bind=\"additional_term.name\"><\/div>\n                    <div ng-bind=\"additional_term.offer_term_details\"><\/div>\n                <\/div>\n                                                             <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_details\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Information Request\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div ng-if=\"onboarding_info.info_request_details.status\">\n                    <div class=\"content-status\">\n                        <div class=\"content-status-bg\" ng-class=\"onboarding_info.info_request_details.color\"><\/div>\n                        <div class=\"content-status-text\" ng-bind=\"onboarding_info.info_request_details.status\"><\/div>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.form_template_name\">\n                    <div class=\"pinned-review-panel__content__item__label\">Template<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.form_template_name\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.deadline\">\n                    <div class=\"pinned-review-panel__content__item__label\">Deadline<\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.deadline\"><\/div>\n                <\/div>\n                <div class=\"flex-col\" ng-if=\"onboarding_info.info_request_details.instruction\">\n                    <div class=\"pinned-review-panel__content__item__label\">Instructions<\/div>\n                    <div class=\"mb-2\" ng-bind-html=\"onboarding_info.info_request_details.instruction | limitToEllipsis:50\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.info_request_details.completed_at\">\n                    <div class=\"pinned-review-panel__content__item__label\">\n                        Completed At\n                    <\/div>\n                    <div ng-bind=\"onboarding_info.info_request_details.completed_at\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.info_request_sync\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Edit Candidate Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee<\/div>\n                    <div ng-repeat=\"employement in onboarding_info.info_request_sync.employements\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"employement.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date of Birth<\/div>\n                            <div ng-bind=\"employement.date_of_birth\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Expected Start Date<\/div>\n                            <div ng-bind=\"employement.expected_start_date\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Job<\/div>\n                    <div ng-repeat=\"job in onboarding_info.info_request_sync.jobs\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Department Name<\/div>\n                            <div ng-bind=\"job.department_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Employment Class<\/div>\n                            <div ng-bind=\"job.employment_class\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Personal<\/div>\n                    <div ng-repeat=\"personal in onboarding_info.info_request_sync.personals\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"personal.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Known As<\/div>\n                            <div ng-bind=\"personal.preferred_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Gender<\/div>\n                            <div ng-bind=\"personal.gender\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Race<\/div>\n                            <div ng-bind=\"personal.race\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Nationality<\/div>\n                            <div ng-bind=\"personal.nationality\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Citizenship<\/div>\n                            <div ng-bind=\"personal.citizenship\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Marital Status<\/div>\n                            <div ng-bind=\"personal.marital_status\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"personal.fullname_in_identification\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Identification<\/div>\n                    <div ng-repeat=\"identification in onboarding_info.info_request_sync.identifications\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Type<\/div>\n                            <div ng-bind=\"identification.identification_type\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Identification Country<\/div>\n                            <div ng-bind=\"identification.identification_country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">National ID<\/div>\n                            <div ng-bind=\"identification.national_id\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Fullname In Identification<\/div>\n                            <div ng-bind=\"identification.fullname_in_identification\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Applied<\/div>\n                            <div ng-bind=\"identification.date_applied\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Issued<\/div>\n                            <div ng-bind=\"identification.date_issued\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Date Expiry<\/div>\n                            <div ng-bind=\"identification.date_expiry\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Address<\/div>\n                    <div ng-repeat=\"address in onboarding_info.info_request_sync.addresses\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Country<\/div>\n                            <div ng-bind=\"address.country\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 1<\/div>\n                            <div ng-bind=\"address.address_1\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Address Line 2<\/div>\n                            <div ng-bind=\"address.address_2\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Postal Code<\/div>\n                            <div ng-bind=\"address.postal_code\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Emergency Contact<\/div>\n                    <div ng-repeat=\"emergency_contact in onboarding_info.info_request_sync.emergency_contacts\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Full Name<\/div>\n                            <div ng-bind=\"emergency_contact.full_name\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Number<\/div>\n                            <div ng-bind=\"emergency_contact.contact_number\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Contact Relation<\/div>\n                            <div ng-bind=\"emergency_contact.contact_relation\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"flex-col\">\n                    <div class=\"pinned-review-panel__content__item__label\">Bank Details<\/div>\n                    <div ng-repeat=\"bank_detail in onboarding_info.info_request_sync.bank_details\" class=\"pinned-review-panel__content__item inline-content flex flex-col w-full\">\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Name<\/div>\n                            <div ng-bind=\"bank_detail.bank_code\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Bank Branch<\/div>\n                            <div ng-bind=\"bank_detail.bank_branch\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Account Number<\/div>\n                            <div ng-bind=\"bank_detail.account_no\"><\/div>\n                        <\/div>\n                        <div class=\"flex flex-row\">\n                            <div class=\"pinned-review-panel__content__item__label mr-2\">Currency<\/div>\n                            <div ng-bind=\"bank_detail.currency\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 17\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Rehire Check\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 18\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n        <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\" icon-op=\"minus\" icon-cl=\"plus\" ng-if=\"onboarding_info.employee.type_string && vm.panelState.structure.options.provider == 7\">\n        <div class=\"pinned-review-panel__header flex justify-between\">\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                Employee Information\n            <\/a>\n            <a class=\"click-to-hide\" style=\"color: #22292f;\">\n                <i class=\"fa fa-minus\"><\/i>\n            <\/a>\n        <\/div>\n        <div class=\"pinned-review-panel-content inline-content detail-panel\">\n            <div class=\"pinned-review-panel__content__item inline-content\">\n                <div>\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Type<\/div>\n                    <div ng-bind=\"onboarding_info.employee.type_string\"><\/div>\n                <\/div>\n                <div ng-if=\"!onboarding_info.employee.generated\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n                <div ng-if=\"onboarding_info.employee.generated && onboarding_info.employee.sync_completed\">\n                    <div class=\"pinned-review-panel__content__item__label\">Employee Id<\/div>\n                    <div ng-if=\"onboarding_info.employee\" ng-bind=\"onboarding_info.employee.user_id\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n    <\/div>\n    <div class=\"ww-footer\" ng-if=\"vm.panelState.structure.component.form.buttons.length\">\n        <fb-field-buttons-wrapper buttons=\"vm.panelState.structure.component.form.buttons\" type=\"'inline'\" name=\"vm.panelState.structure.component.form.name\"><\/fb-field-buttons-wrapper>    <\/div>\n<\/div>\n","common\/app\/panel-content\/activities":"<div class=\"entity-view\" ng-class=\"vm.panelState.structure.options.wrapper.className\">\n    <div class=\"entity-view-header\" ng-if=\"vm.panelState.structure.options.header\">\n        <h2 ng-bind=\"vm.panelState.structure.options.header\"><\/h2>\n    <\/div>\n        <div class=\"entity-view-body\">\n            <rms-activities activity-options=\"vm.panelState.structure.options.activity\"><\/rms-activities>\n    <\/div>\n<\/div>","common\/app\/view-templates\/job-posting-job-details":"<div class=\"candidate-profile-view-action-bar\" ng-if=\"vm.panelState.structure.options.toggle_buttons.length\">\n    <div ng-repeat=\"button in vm.panelState.structure.options.toggle_buttons\">\n        <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n    <\/div>\n<\/div>\n<div class=\"p-20 work-order-details job-info-wrapper\" ng-class=\"vm.panelState.structure.options.wrapper_class\">\n    <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\"\n         show-on-default=\"yes\" icon=\"angle\" close-direction=\"down\" class=\"info-section mb-20 job-posting\"\n         ng-if=\"vm.panelState.model.job_posting\">\n             <div class=\"info-section-header\">\n            <h6>Job Posting <i class=\"fa default\"><\/i><\/h6>\n        <\/div>\n        <div class=\"info-section-content\">\n            <div class=\"p-20 job-posting__summary\">\n                <div class=\"row\">\n                    <div class=\"small-6 columns\" ng-if=\"!vm.panelState.model.job_posting.is_recruiter_post\">\n                        Job Portal Ad ID\n                    <\/div>\n                    <div class=\"small-6 columns text-muted\" ng-if=\"!vm.panelState.model.job_posting.is_recruiter_post\"\n                         ng-bind=\"(vm.panelState.model.job_posting.display_board_identifier || (vm.panelState.model.job_posting.board_identifier || ' - ')) | limitToEllipsis:36\">\n                    <\/div>\n                    <div class=\"small-6 columns\" ng-if=\"!vm.panelState.model.job_posting.is_recruiter_post\">\n                        Job Portal Ad URL\n                    <\/div>\n                    <div class=\"small-6 columns text-muted\" ng-if=\"!vm.panelState.model.job_posting.is_recruiter_post\">\n                        <a target=\"_blank\" ng-if=\"vm.panelState.model.job_posting.board_public_url\"\n                           ng-href=\"<%vm.panelState.model.job_posting.board_public_url%>\">\n                            View\n                        <\/a>\n                        <span ng-if=\"!vm.panelState.model.job_posting.board_public_url\"> - <\/span>\n                    <\/div>\n                    <div class=\"small-6 columns\" ng-if=\"!vm.panelState.model.job_posting.is_recruiter_post\">\n                        Tagged Application Link\n                    <\/div>\n                    <div class=\"small-6 columns text-muted\" ng-if=\"!vm.panelState.model.job_posting.is_recruiter_post\">\n                        <a target=\"_blank\" ng-if=\"vm.panelState.model.job_posting.career_portal_apply_link\"\n                           ng-href=\"<%vm.panelState.model.job_posting.career_portal_apply_link%>\">\n                           View\n                        <\/a>\n                        <span ng-if=\"!vm.panelState.model.job_posting.career_portal_apply_link\"> - <\/span>\n                    <\/div>\n                    <div class=\"small-6 columns\">\n                        Ad Starting Date\n                    <\/div>\n                    <div class=\"small-6 columns text-muted\"\n                         ng-bind=\"(vm.panelState.model.job_posting.posting_start_date || ' - ') | limitToEllipsis:36\">\n                    <\/div>\n                    <div class=\"small-6 columns\">\n                        Ad End Date\n                    <\/div>\n                    <div class=\"small-6 columns text-muted\"\n                         ng-bind=\"(vm.panelState.model.job_posting.posting_end_date || ' - ') | limitToEllipsis:36\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div sod-collapsible close-direction=\"up\" click-target=\".info-section-header\" hide-target=\".info-section-content\"\n         show-on-default=\"yes\" icon=\"angle\" close-direction=\"down\" class=\"info-section mb-20 job-posting\"\n         ng-if=\"vm.panelState.model.job_info\">\n        <div class=\"info-section-header\">\n            <h6>Job Details <i class=\"fa default\"><\/i>\n            <\/h6>\n        <\/div>\n        <div class=\"info-section-content\" style=\"\">\n            <h2 class=\"wo-header\" ng-bind-html=\"vm.panelState.model.job_info.job_title | trustAsHtml\"><\/h2>\n            <div class=\"work-order-details-overview\">\n                <div class=\"row\">\n                    <div class=\"columns small-6\">\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.experience_levels.length\">\n                            <i class=\"fa fa-tachometer\"><\/i>\n                            <div class=\"wo-label\"> Experience Level<\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.experience_levels| stringArray: ', '\"\n                                class=\"wo-value\"><\/div>\n                        <\/div>\n\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.custom_experience_levels.length\">\n                            <i class=\"fa fa-tachometer\"><\/i>\n                            <div class=\"wo-label\" ng-bind=\"vm.panelState.model.custom_labels.custom_experience_level\"><\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.custom_experience_levels| stringArray: ', '\"\n                                class=\"wo-value\"><\/div>\n                        <\/div>\n\n\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.employment_types.length\">\n                            <i class=\"fa fa-tachometer\"><\/i>\n                            <div class=\"wo-label\"> Employment Type<\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.employment_types| stringArray: ', '\"\n                                class=\"wo-value\"><\/div>\n                        <\/div>\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.custom_employment_type.length\">\n                            <i class=\"fa fa-tachometer\"><\/i>\n                            <div class=\"wo-label\" ng-bind=\"vm.panelState.model.custom_labels.custom_employment_type\"><\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.custom_employment_type| stringArray: ', '\"\n                                class=\"wo-value\"><\/div>\n                        <\/div>\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.education_levels.length\">\n                            <i class=\"fa fa-graduation-cap\"><\/i>\n                            <div class=\"wo-label\"> Education Level<\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.education_levels | stringArray: ', '\"\n                                class=\"wo-value\"><\/div>\n                        <\/div>\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.working_arrangement\">\n                            <i class=\"fa fa-map-pin\"><\/i>\n                            <div class=\"wo-label\"> Working Arrangement<\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.working_arrangement | stringArray: ', '\" class=\"wo-value\"><\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"columns small-6\">\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.job_functions.length\">\n                            <i class=\"fa fa-briefcase\"><\/i>\n                            <div ng-bind=\"vm.panelState.model.job_info.job_functions | stringArray: ', '\"\n                                class=\"wo-label\"><\/div>\n                            <div ng-bind=\"vm.panelState.model.job_info.job_roles | stringArray: ', '\" class=\"wo-value\"><\/div>\n                        <\/div>\n\n                        <div class=\"wo-overview-item\" ng-if=\"vm.panelState.model.job_info.specialization.length\">\n                            <i class=\"fa fa-briefcase\"><\/i>\n                            <div ng-bind=\"vm.panelState.model.job_info.specialization | stringArray: ', '\"\n                                class=\"wo-label\"><\/div>\n                        <\/div>\n\n\n                        <div class=\"wo-overview-item\">\n                            <i class=\"fa fa-id-badge\"><\/i>\n                            <div class=\"wo-label\">\n                                <span ng-bind=\"vm.panelState.model.job_info.vacancies\"><\/span> Positions Available\n                            <\/div>\n                        <\/div>\n                        <div class=\"wo-overview-item\">\n                            <i class=\"fa fa-tasks\"><\/i>\n                            <div class=\"wo-label\">\n                                <span ng-bind=\"vm.panelState.model.job_info.years_of_experience\"><\/span> Years of Working Experience\n                            <\/div>\n                        <\/div>\n                        <div class=\"wo-overview-item\">\n                            <i class=\"fa fa-usd\"><\/i>\n                            <div class=\"wo-label\" ng-bind=\"vm.panelState.model.job_info.salary_string\"><\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"wo-description-box\">\n        <h3 class=\"wo-subheader\">Job Description<\/h3>\n        <p ng-bind-html=\"vm.panelState.model.job_info.job_description | trustAsHtml\"><\/p>\n    <\/div>\n\n    <div class=\"wo-description-box\" ng-if=\"vm.panelState.model.job_info.qualifications\">\n        <h3 class=\"wo-subheader\">Qualification<\/h3>\n        <p ng-bind-html=\"vm.panelState.model.job_info.qualifications | trustAsHtml\"><\/p>\n    <\/div>\n\n    <div class=\"wo-description-box\" ng-if=\"vm.panelState.model.job_info.other_information\">\n        <h3 class=\"wo-subheader\">Other Information<\/h3>\n        <p ng-bind-html=\"vm.panelState.model.job_info.other_information | trustAsHtml\"><\/p>\n    <\/div>\n<\/div>\n","common\/app\/list-templates\/job-portals-v2":"<div kendo-list-view=\"vm.stateData.kendoListObj\"\n           k-data-source=\"vm.stateData.listOptions.dataSource\"\n           class=\"rms-list-templates-view\"\n           k-options=\"vm.stateData.listOptions.additionalOptions\"\n           ng-class=\"vm.stateData.listOptions.attrs.wrapperClass\">\n    <div  k-template\n          ng-class=\"vm.stateData.listOptions.attrs.entityClass\">\n            <div class=\"\">\n        <div class=\"jobs-portals-list-item\"\n             ng-class=\"{'active':dataItem.selected, 'selectable': dataItem.selectable, 'disabled': !dataItem.selectable }\"\n             ng-click=\"dataItem.selectable && vm.events.toggleSelected(dataItem)\">\n            <div class=\"job-portal-list-item-header\">\n                <h4 ng-bind-html=\"dataItem.name | trustAsHtml\"><\/h4>\n                <span class=\"byoa-status label primary round\" ng-if=\"dataItem.byoa\">Own<br \/>Account<\/span>\n            <\/div>\n            <div class=\"job-portal-list-item-image-wrapper\">\n                <div class=\"job-portal-list-item-image\"\n                     style=\"background-image: url(<%dataItem.logo || '\/\/\/assets\/imgs\/logo_400.png'%>)\">\n                <\/div>\n\n                <div class=\"job-portal-list-item-image-description\" ng-bind=\"dataItem.description\">\n\n                <\/div>\n            <\/div>\n            <div class=\"job-portal-list-item-content\" ng-show=\"dataItem.selectable\">\n\n                <div class=\"job-portal-list-item-labels\">\n                    <sod-tool-tippy label=\"'&lt;div class=&quot;p-1-rem&quot;&gt;&lt;h6&gt;Job Propagation Type&lt;\/h6&gt;&lt;div&gt;Job Posting will posted by RecruiterPal system automatically&lt;\/div&gt;&lt;\/div&gt;'\" ng-show=\"dataItem.auto_board\">\n                        <span class=\"label radius default\">Auto posting<\/span>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"'&lt;div class=&quot;p-1-rem&quot;&gt;&lt;h6&gt;Job Propagation Type&lt;\/h6&gt;&lt;div&gt;Job Posting requires to be manually posted by user&lt;\/div&gt;&lt;\/div&gt;'\" ng-show=\"!dataItem.auto_board\">\n                        <span class=\"label radius default\">Manual posting<\/span>\n                    <\/sod-tool-tippy>\n                    <sod-tool-tippy label=\"dataItem.post_setting_desc\" ng-if=\"dataItem.post_setting_label\">\n                        <span class=\"label radius default\" ng-bind=\"dataItem.post_setting_label\"><\/span>\n                    <\/sod-tool-tippy>\n                <\/div>\n                <div class=\"job-portal-list-item-price\" ng-if=\"dataItem.price\">\n                    <div>\n                        <span ng-if=\"dataItem.price.discounted\" class=\"font-bold pl-2\">\n                            <span class=\"line-through text-grey\">\n                                <span class=\"text-grey\" ng-bind=\"dataItem.price.actual_price | currency:''\"><\/span>\n                                <span class=\"text-grey\" ng-bind=\"dataItem.price.currency\"><\/span>\n                            <\/span>\n                            <span class=\"text-grey-darkest pl-2\"><i class=\"fa fa-arrow-right\"><\/i><\/span>\n                        <\/span>\n                        <span class=\"font-bold px-2 text-lg job-portal-list-item-price-format\">\n                            <span class=\"text-grey-darkest uppercase\" ng-bind=\"dataItem.price.formatted\"><\/span>\n                        <\/span>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"!dataItem.price && !dataItem.byoa\" class=\"job-portal-list-item-price\">\n                    <div>\n                        <span class=\"font-bold px-2 text-lg\">\n                        <\/span>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"dataItem.selectable\" class=\"job-portals-list-item-actions\">\n                <div class=\"selection-indicator\" ng-class=\"{'selected':dataItem.selected}\">\n                    <i class=\"fa fa-2x\"\n                       ng-class=\"{'fa-circle-o':!dataItem.selected, 'fa-check-circle-o':dataItem.selected}\">\n                    <\/i>\n                    <span class=\"label-selected\">Selected<\/span>\n                    <span class=\"label-hint\">Click to add portal<\/span>\n                <\/div>\n            <\/div>\n            <div ng-if=\"!dataItem.selectable\" class=\"job-portals-list-item-actions disabled\">\n                <div class=\"text-muted text-italic\">\n                    <i class=\"fa fa-ban\"><\/i> <%dataItem.not_selectable_msg%>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/list-templates\/recruiter-list-template":"<div kendo-list-view=\"vm.stateData.kendoListObj\"\n           k-data-source=\"vm.stateData.listOptions.dataSource\"\n           class=\"rms-list-templates-view\"\n           k-options=\"vm.stateData.listOptions.additionalOptions\"\n           ng-class=\"vm.stateData.listOptions.attrs.wrapperClass\">\n    <div  k-template\n          ng-class=\"vm.stateData.listOptions.attrs.entityClass\">\n            <div class=\"\">\n        <div class=\"jobs-portals-list-item\"\n             ng-if=\"dataItem.id\"\n             ng-class=\"{'active':dataItem.selected, 'selectable': dataItem.selectable, 'disabled': !dataItem.selectable, 'disabled': dataItem.disabled  }\"\n             ng-click=\"dataItem.selectable && vm.events.toggleSelected(dataItem)\">\n            <span\n                class=\"recruiter-selected text-center\"\n                ng-if=\"dataItem.selected\"\n            >\n                <i class=\"fa fa-check\"><\/i>\n            <\/span>\n            <div class=\"recruiter-item no-padding\">\n                <div class=\"job-portal-list-item-header\">\n                    <h4 class=\"text-bold\" ng-bind=\"dataItem.name\"><\/h4>\n                <\/div>\n                <div class=\"overflow-hidden no-padding\" style=\"flex: 0 0 80px;\">\n                    <div class=\"job-portal-list-item-image-wrapper\">\n\n                        <div class=\"job-portal-list-item-image\"\n                             style=\"background-image: url(<%dataItem.logo || '\/\/\/assets\/imgs\/logo_400.png'%>)\">\n                        <\/div>\n\n                        \n                                            <\/div>\n                <\/div>\n                <div ng-if=\"dataItem.system_provider\">\n                    <div class=\"recruiter-preferred-wrapper\">\n                        <div class=\"recruiter-preferred-tri\"><\/div>\n                        <div class=\"recruiter-preferred\"><i class=\"fa fa-check\"><\/i> Preferred<\/div>\n                    <\/div>\n                                                                                                                                                                                <\/div>\n                <div class=\"job-portal-list-item-content\" ng-bind-html=\"dataItem.description\">\n\n                <\/div>\n                <div class=\"recruiter-disabled\" ng-if=\"dataItem.disabled\">\n                    <i class=\"fa fa-ban\"><\/i> Disabled\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/list-templates\/job-portals-edit":"<div kendo-list-view=\"vm.stateData.kendoListObj\"\n           k-data-source=\"vm.stateData.listOptions.dataSource\"\n           class=\"rms-list-templates-view\"\n           k-options=\"vm.stateData.listOptions.additionalOptions\"\n           ng-class=\"vm.stateData.listOptions.attrs.wrapperClass\">\n    <div  k-template\n          ng-class=\"vm.stateData.listOptions.attrs.entityClass\">\n            <div>\n        <div class=\"jobs-portals-list-item\">\n            <div\n                    class=\"job-portal-item-selection\"\n                    ng-class=\"{selected: dataItem.selected, 'main-bg-color': dataItem.selected, 'not-selectable': !dataItem.selectable}\"\n                    ng-click=\"vm.events.toggleSelected(dataItem)\"\n            >\n                <div>\n                    <div ng-if=\"dataItem.selected && dataItem.selectable\"><i class=\"fa fa-times fa-2x\"><\/i><\/div>\n                    <div ng-if=\"!dataItem.selected && dataItem.selectable\"><i class=\"fa fa-plus fa-2x\"><\/i><\/div>\n                    <div ng-if=\"!dataItem.selectable\"><i class=\"fa fa-2x fa-ban\"><\/i><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"job-portal-image-wrapper\">\n                <div>\n                    <div ng-if=\"dataItem.premium\" class=\"premium-tip\"><\/div>\n                    <div class=\"job-portal-image\"\n                         ng-style=\"{ 'background-image': 'url(' + (dataItem.logo || '\/\/\/assets\/imgs\/logo_400.png') + ')'}\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div class=\"job-portal-detail\">\n                <div class=\"job-portal-detail-header\">\n                    <div ng-bind=\"dataItem.name\" class=\"job-portal-name\"><\/div>\n                    <div class=\"form-display-label\" ng-if=\"dataItem.job_posting_id\"\n                         ng-bind=\"dataItem.job_posting_id\"><\/div>\n                    <div ng-bind=\"dataItem.job_board_name\"><\/div>\n                    <div class=\"right flex items-center\">\n                        <button class=\"button small mx-2\" ng-class=\"{main: dataItem.selected, default: !dataItem.selected}\"\n                                ng-click=\"vm.events.toggleSelected(dataItem)\" ng-if=\"dataItem.selectable\">\n                            <%(dataItem.selected) ? 'Unselect' :\n                            'Select' %>\n                        <\/button>\n                        <div ng-if=\"!dataItem.selectable\" class=\"text-muted job-portal-not-selectable-msg\" ng-bind=\"dataItem.not_selectable_msg\">\n                            Job ad is still live on portal\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"job-portal-detail-body\" ng-if=\"dataItem.description\">\n                    <div>\n                        <div class=\"form-display-label\">Description<\/div>\n                        <div ng-bind=\"dataItem.description || '-'\" class=\"job-portal-description\"><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"job-portal-detail-body\" ng-if=\"dataItem.posting_info\">\n                    <div>\n                        <div class=\"form-display-label\">Ad Starting Date<\/div>\n                        <div ng-bind=\"dataItem.posting_info.posting_start_date || '-'\"\n                             class=\"job-portal-description\"><\/div>\n                    <\/div>\n                    <div>\n                        <div class=\"form-display-label\">Ad End Date<\/div>\n                        <div ng-bind=\"dataItem.posting_info.posting_end_date || '-'\"\n                             class=\"job-portal-description\"><\/div>\n                    <\/div>\n                    <div>\n                        <div class=\"form-display-label\">Post Status<\/div>\n                        <div ng-bind=\"dataItem.posting_info.post_status_arr.label || '-'\"\n                             class=\"job-portal-description\"><\/div>\n                    <\/div>\n                    <div>\n                        <div class=\"form-display-label\">Job Portal Ad<\/div>\n                        <a target=\"_blank\"\n                           ng-href=\"<% dataItem.posting_info.board_public_url %>\">View<\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n                                                                                                                                                                                                                                                                                                                                                                                                                                        \n\n\n                                                                                                                                                                                                                                                                            <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/list-templates\/job-portals":"<div kendo-list-view=\"vm.stateData.kendoListObj\"\n           k-data-source=\"vm.stateData.listOptions.dataSource\"\n           class=\"rms-list-templates-view\"\n           k-options=\"vm.stateData.listOptions.additionalOptions\"\n           ng-class=\"vm.stateData.listOptions.attrs.wrapperClass\">\n    <div  k-template\n          ng-class=\"vm.stateData.listOptions.attrs.entityClass\">\n            <div>\n        <div class=\"jobs-portals-list-item\">\n            <div\n                    class=\"job-portal-item-selection\"\n                    ng-class=\"{selected: dataItem.selected, 'main-bg-color': dataItem.selected, 'not-selectable': !dataItem.selectable}\"\n                    ng-click=\"vm.events.toggleSelected(dataItem)\"\n            >\n                <div>\n                    <div ng-if=\"dataItem.selected && dataItem.selectable\"><i class=\"fa fa-times fa-2x\"><\/i><\/div>\n                    <div ng-if=\"!dataItem.selected && dataItem.selectable\"><i class=\"fa fa-plus fa-2x\"><\/i><\/div>\n                    <div ng-if=\"!dataItem.selectable\"><i class=\"fa fa-2x fa-ban\"><\/i><\/div>\n                <\/div>\n            <\/div>\n            <div class=\"job-portal-image-wrapper\">\n                <div>\n                    <div ng-if=\"dataItem.job_posting_type_id === 2\" class=\"premium-tip\"><\/div>\n                    <div class=\"job-portal-image\"\n                         ng-style=\"{ 'background-image': 'url(' + (dataItem.logo || '\/\/\/assets\/imgs\/logo_400.png') + ')'}\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div class=\"job-portal-detail\">\n                <div class=\"job-portal-detail-header flex items-center justify-between\">\n                    <div>\n                        <div class=\"job-portal-name flex items-center\">\n                            <span ng-if=\"dataItem.auto_expiry_days\" class=\"mr-5\">\n                                [\n                                 <span ng-if=\"dataItem.on_post_end == 4\">Auto Expiry -<\/span>\n                        <span ng-if=\"dataItem.on_post_end == 11\">Auto Extend -<\/span>\n                                    &lt;%dataItem.auto_expiry_days%&gt; day(s)\n                                                                                                                                                                                                                                                                                            ]\n                            <\/span>\n                            <span ng-bind=\"dataItem.name\"><\/span>\n                            <span class=\"flex items-center ml-2\" ng-if=\"dataItem.auto_board === false || dataItem.auto_board === true\">\n                                <i ng-if=\"dataItem.auto_board\" class=\"fa fa-circle-o text-green text-xs\"><\/i>\n                                <i ng-if=\"!dataItem.auto_board\" class=\"fa fa-circle-o text-red text-xs\"><\/i>\n                                <span ng-if=\"dataItem.auto_board\" class=\"uppercase text-xs\" style=\"margin-top: 1px;\">&nbsp;Auto<\/span>\n                                <span ng-if=\"!dataItem.auto_board\" class=\"uppercase text-xs\" style=\"margin-top: 1px;\">&nbsp;Manual<\/span>\n                            <\/span>\n                        <\/div>\n                        <div class=\"form-display-label\" ng-if=\"dataItem.job_posting_id\"\n                             ng-bind=\"dataItem.job_posting_id\"><\/div>\n                    <\/div>\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <div ng-if=\"!dataItem.selectable\" class=\"flex items-center\">\n                            <i class=\"fa fa-exclamation-circle text-alert\"><\/i>&nbsp;\n                            <span class=\"text-alert job-portal-not-selectable-msg\" ng-bind=\"dataItem.not_selectable_msg\">\n                                Job ad is still live on portal\n                            <\/span>\n                        <\/div>\n                                    <\/div>\n                <div class=\"job-portal-detail-body\" ng-if=\"dataItem.description\">\n                    <div>\n                        <div class=\"form-display-label\">Description<\/div>\n                        <div ng-bind=\"dataItem.description || '-'\" class=\"job-portal-description\"><\/div>\n                    <\/div>\n                <\/div>\n                <div class=\"job-portal-detail-body\" ng-if=\"dataItem.posting_info\">\n                    <div>\n                        <div class=\"form-display-label\">Ad Starting Date<\/div>\n                        <div ng-bind=\"dataItem.posting_info.posting_start_date || '-'\"\n                             class=\"job-portal-description\"><\/div>\n                    <\/div>\n                    <div>\n                        <div class=\"form-display-label\">Ad End Date<\/div>\n                        <div ng-bind=\"dataItem.posting_info.posting_end_date || '-'\"\n                             class=\"job-portal-description\"><\/div>\n                    <\/div>\n                    <div>\n                        <div class=\"form-display-label\">Post Status<\/div>\n                        <div ng-bind=\"dataItem.posting_info.post_status_arr.label || '-'\"\n                             class=\"job-portal-description\"><\/div>\n                    <\/div>\n                    <div>\n                        <div class=\"form-display-label\">Job Portal Ad<\/div>\n                        <a target=\"_blank\"\n                           ng-href=\"<% dataItem.posting_info.board_public_url %>\">View<\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div ng-if=\"dataItem.selectable\" class=\"job-portal-meta flex flex-col\">\n                <div class=\"meta-price flex-1 flex items-center justify-center\" ng-if=\"!vm.options.hide_price\">\n                    <div ng-if=\"dataItem.price\" class=\"mx-2 flex justify-center items-center\">\n                        <span ng-if=\"dataItem.price.discounted\" class=\"font-bold pl-2\">\n                            <span class=\"line-through text-grey\">\n                                <span class=\"text-grey\" ng-bind=\"dataItem.price.actual_price | currency:''\"><\/span>\n                                <span class=\"text-grey\" ng-bind=\"dataItem.price.currency\"><\/span>\n                            <\/span>\n                            <span class=\"text-grey-darkest pl-2\"><i class=\"fa fa-arrow-right\"><\/i><\/span>\n                        <\/span>\n                                                                                                                                <span class=\"font-bold px-2 text-lg\">\n                            <span class=\"text-grey-darkest uppercase\" ng-bind=\"dataItem.price.formatted\" ><\/span>\n                        <\/span>\n\n\n\n                    <\/div>\n                    <div ng-if=\"!dataItem.price\" class=\"mx-2 flex justify-center items-center\">\n                        <span class=\"font-bold px-2 text-lg\">\n                            <span class=\"text-grey-darkest uppercase\">Free<\/span>\n                        <\/span>\n                    <\/div>\n                <\/div>\n                <div class=\"meta-actions\">\n                    <button ng-class=\"{'active': dataItem.selected}\" ng-click=\"vm.events.toggleSelected(dataItem)\" ng-if=\"dataItem.selectable\">\n                        <% (dataItem.selected) ? 'Unselect' : 'Select' %>\n                    <\/button>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/treeview\/treeview":"<tree-view-item ng-repeat=\"item in vm.items\" item=\"item\" template=\"vm.template\" handle-click=\"vm.handleClick\"><\/tree-view-item>","common\/app\/components\/treeview\/treeview-item":"<div class=\"treeview-section\" ng-class=\"{ 'has-toggle': vm.item.children.length > 0 }\">\n    <div class=\"treeview-section-toggle\" ng-click=\"vm.toggle()\" ng-if=\"vm.item.children.length > 0\"><i class=\"fa\" ng-class=\"{\n        'fa-minus-square-o': vm.open,\n        'fa-plus-square-o': !vm.open\n    }\"><\/i><\/div>\n    <div ng-bind=\"vm.item.label\" ng-class=\"vm.item.settings.classes\" ng-click=\"vm.handleClick(vm.item)\" class=\"treeview-selector\"><\/div>\n    <div class=\"treeview-section-children-wrapper\" ng-show=\"vm.open\">\n        <div ng-if=\"vm.item.children\" class=\"treeview-section-children\">\n            <tree-view-item ng-repeat=\"item in vm.item.children\" item=\"item\" template=\"vm.template\" handle-click=\"vm.handleClick\"><\/tree-view-item>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/skillset-manager":"<div class=\"skillset-manager\">\n    <div id=\"skill-search-input-bar\" ng-if=\"vm.state.config.showSearch\">\n        <i class=\"fa fa-search absolute-y-center\" aria-hidden=\"true\"><\/i>\n        <input ng-click=\"vm.handleSearch($event)\" ng-change=\"vm.handleSearch($event)\" ng-model=\"vm.state.searchInput\"\n               ng-model-options=\"vm.state.searchModelOptions\"\n               autocapitalize=\"word\" ng-keydown=\"vm.handleKeyPress($event)\" type=\"text\"\n               placeholder=\"Search for a skill (or create a new one)\">\n        <button type=\"button\" ng-if=\"vm.state.searchInput.length > 0\" ng-click=\"vm.clearSearch()\"\n                class=\"clear-search absolute-y-center\">\n            <i class=\"fa fa-times\"><\/i><\/button>\n    <\/div>\n    <div ng-if=\"vm.state.dropdownActive\" id=\"skill-search-dropdown\">\n        <ul>\n            <li ng-class=\"{'active': skill.select_id === vm.state.highlighted}\"\n                ng-mouseover=\"vm.highlightSkill(skill.select_id)\" ng-click=\"vm.selectSkill(skill)\"\n                ng-repeat=\"skill in vm.state.filteredSkills track by $index\" ng-if=\"!skill.hidden\"\n                class=\"dropdown-item\">\n                <span class=\"search-result-text\"><%skill.label%><\/span>\n                <span\n                    class=\"category\"><%!skill.user_created ? skill.category_name : '+ Create New'%><\/span>\n            <\/li>\n            <li class=\"loading-mask\" ng-if=\"vm.state.loading\">\n                <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles.svg\"\/><\/li>\n        <\/ul>\n    <\/div>\n    <div class=\"state-message\" ng-if=\"vm.state.combinedSkills.length === 0\">\n        No skills selected\n    <\/div>\n    <div ng-if=\"vm.state.combinedSkills.length > 0\" ng-switch=\"vm.options.options.mode\">\n        <div class=\"state-message\" ng-switch-when=\"required_skills\">\n            <% 'Please provide your proficiency for these {0} skill(s)' | stringFormat:[vm.state.combinedSkills.length] %>\n        <\/div>\n        <div class=\"state-message\" ng-switch-when=\"review_skills\">\n            <% 'Evaluation of skill for these {0} skill(s)' | stringFormat:[vm.state.combinedSkills.length] %>\n        <\/div>\n        <div class=\"state-message\" ng-switch-default>\n            You have added <strong><%vm.state.combinedSkills.length%><\/strong> skill(s).\n        <\/div>\n    <\/div>\n    <div class=\"selected-skills\">\n        <ul>\n            <li class=\"skill-row\" ng-repeat=\"skill in vm.state.combinedSkills track by $index\"\n                ng-init=\"$skillIndex = $index;\">\n                <div class=\"skill-label\">\n                    <button type=\"button\" ng-class=\"{'hidden': !vm.state.config.showRemove}\"\n                            ng-click=\"vm.removeSkill(skill, $event)\" class=\"remove-item\">\n                        <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/close_ico.svg\"\/>\n                    <\/button>\n                    <span class=\"skill-label__text\"><%skill.label%><\/span>\n                <\/div>\n                <div class=\"spacer\" ng-if=\"vm.state.config.showRemove\"><\/div>\n                <div class=\"proficiency-row\">\n                    <div class=\"selectors\" ng-mouseleave=\"vm.handleMouseLeave(skill, $event)\"\n                         ng-class=\"{'error': vm.hasError($skillIndex)}\">\n\n                        <button class=\"selector-dot\" ng-repeat=\"proficiency in vm.state.proficiencies track by $index\"\n                                type=\"button\" ng-click=\"vm.handleProficiency(skill, $index)\"\n                                ng-mouseover=\"vm.handleMouseOver(proficiency.label, $skillIndex, $event)\"\n                                ng-attr-data-value=\"<%$index%>\">\n                            <i class=\"fa\" ng-class=\"skill.level >= $index ? 'fa-circle' : 'fa-circle-thin'\"><\/i>\n                        <\/button>\n                        <button type=\"button\" class=\"not-applicable\" ng-if=\"vm.state.config.showNA\"\n                                ng-class=\"{'active': skill.not_applicable, 'error': vm.errorMessage()[$skillIndex] && skill.proficiency_id === null}\"\n                                ng-click=\"vm.handleNA(skill, $event, 'Not Applicable')\"\n                                ng-mouseover=\"vm.handleMouseOver('Not Applicable', $index, $event)\">\n                            N\/A\n                        <\/button>\n                    <\/div>\n                    <span class=\"tool-tip\"\n                          ng-class=\"{'error': vm.hasError($skillIndex)}\"\n                          ng-if=\"vm.state.proficiencyTooltip.row === $index\">\n                        <%vm.state.proficiencyTooltip.text%>\n                    <\/span>\n                    <span class=\"tool-tip\"\n                          ng-class=\"{'error': vm.hasError($skillIndex)}\"\n                          ng-if=\"vm.state.proficiencyTooltip.row === $index\" ng-bind=\"\">\n                    <\/span>\n                    <span class=\"tool-tip\"\n                          ng-class=\"{'error': vm.hasError($skillIndex)}\"\n                          ng-if=\"vm.state.proficiencyTooltip.row !== $index && skill.proficiency_id\">\n                        <%skill.not_applicable ? 'Not Applicable' : skill.proficiency_label%>\n                    <\/span>\n                    <span class=\"tool-tip tool-tip--grey\"\n                          ng-class=\"{'error': vm.hasError($skillIndex)}\"\n                          ng-if=\"vm.state.proficiencyTooltip.row !== $index && !skill.proficiency_id\">\n                        <%vm.hasError($skillIndex) ? vm.errorMessage()[$skillIndex] : 'No level was selected' %>\n                    <\/span>\n                    <div class=\"review-labels\" ng-if=\"vm.state.config.showReview\">\n                        <div class=\"expected\">\n                            <span>\n                                <i class=\"fa fa-suitcase\"><\/i>\n                            <\/span>\n                            <span>Expected:&nbsp;<\/span><%skill.expected_proficiency_id >= 0 ?\n                            skill.expected_proficiency_label : 'Not Applicable' %>\n                        <\/div>\n                        <div class=\"declared\">\n                            <span>\n                                <i class=\"fa fa-user\"><\/i>\n                            <\/span>\n                            <span>Declared:\n                                &nbsp;<\/span><%skill.declared_proficiency_id >= 0 ? skill.declared_proficiency_label :\n                            'Not Applicable' %>\n                        <\/div>\n                    <\/div>\n                                    <\/div>\n            <\/li>\n        <\/ul>\n    <\/div>\n<\/div>\n","common\/app\/components\/tagging\/common":"<div ng-class=\"{'added':optionModel.added}\">\n    <span><i class=\"fa fa-check\"><\/i><% optionModel.searchText %><\/span>\n    <span class=\"aa-suggestion-existed\">&nbsp;-&nbsp;&nbsp;Already added<\/span>\n<\/div>","common\/app\/components\/tagging\/addCommon":"<div ng-class=\"{'added':optionModel.added}\">\n    <span><i class=\"fa fa-check\"><\/i><% optionModel.searchText %><\/span>\n    <span class=\"aa-suggestion-add-new\">&nbsp;-&nbsp;Add New<\/span>\n    <span class=\"aa-suggestion-add-new-existed\">&nbsp;-&nbsp;&nbsp;Already added<\/span>\n<\/div>","common\/app\/components\/scheduler\/scheduler":"<div class=\"rms-timeslot-scheduler\">\n    <div class=\"row collapse\">\n        <div class=\"small-12 columns\">\n            <label>\n                Interview Appointment\n            <\/label>\n        <\/div>\n        <div class=\"small-9 columns\">\n            <sod-time-slot-picker ng-change=\"schCtrl.timeslotpickerChange()\" ng-model=\"schCtrl.model\"\n                                  options=\"schCtrl.time_slot_picker_options\" set-value=\"schCtrl.setTimeslotPickerValue\"\n                                  render=\"schCtrl.render\"><\/sod-time-slot-picker>\n        <\/div>\n        <div class=\"small-3 columns scheduler-actions\">\n            <fb-field-buttons-wrapper buttons=\"schCtrl.options.scheduler_settings.buttons\"\n                                      type=\"schCtrl.form_display_type\"\n                                      name=\"schCtrl.options.scheduler_settings.button_form_identifier\"><\/fb-field-buttons-wrapper>\n        <\/div>\n    <\/div>\n    <div class=\"time-slot-scheduler-wrapper\" ng-if=\"!schCtrl.reloads\">\n        <div kendo-scheduler=\"schCtrl.schedulerObj\" k-options=\"schCtrl.scheduler_options\" ng-class=\"schCtrl.options.type\"><\/div>\n    <\/div>\n<\/div>","common\/app\/components\/manage-questionnaire\/manage-questionnaire":"<div>Hello World This is template<\/div>","common\/app\/components\/manage-questionnaire\/panel-content-template":"<div class=\"overflow-y-scroll height-100-pct p-2-rem\">\n    <rms-manage-questionnaire options=\"vm.panelState.structure.options\" ng-model=\"vm.panelState.model\"><\/rms-manage-questionnaire>\n<\/div>","common\/app\/components\/conversation":"<div class=\"activity-list-wrapper\">\n    <rms-activity-wrapper item=\"conversation_item\" ng-repeat=\"conversation_item in vm.data\">\n        <rms-activity item=\"conversation_item\" options=\"vm.options.conversation_option\" conversation=\"vm.dataItem\"><\/rms-activity>\n    <\/rms-activity-wrapper>\n<\/div>","common\/app\/components\/standard-header-actions":"<fb-form-generator fb-data=\"vm.form\" ng-if=\"vm.hasForm()\"><\/fb-form-generator>","common\/app\/components\/generic-multi-select":"<div class=\"generic-multi-select\">\n    <label for=\"\" ng-bind=\"vm.label\"><\/label>\n    <div class=\"options\">\n        <span\n            class=\"selectable\"\n            ng-repeat=\"option in vm.options\"\n            ng-click=\"vm.toggleSelect(option)\"\n            ng-bind-html=\"option.label | trustAsHtml\"\n            ng-class=\"{'active': (vm.selected.indexOf(option) !== -1 && !option.required), 'cursor-pointer': !option.required, 'required': option.required}\"\n        ><\/span>\n    <\/div>\n<\/div>\n","common\/app\/components\/page-dirty-confirmation":"<div class=\"modal fade\" ng-show=\"vm.show\">\n    <div class=\"modal-dialog <%vm.options.modalSize%> <%vm.options.modalClass%> no-border\" >\n        <div class=\"modal-header\">\n\n            <h4 class=\"modal-title\" ng-if=\"vm.options.title\"><\/h4>\n\n            <h4 class=\"modal-title\" ng-if=\"!vm.options.title\">Are You Sure?<\/h4>\n            <button class=\"close\"\n                    ng-click=\"vm.dismiss()\">\n                <i class=\"fa fa-times\"><\/i>\n            <\/button>\n        <\/div>\n        <div class=\"modal-content\">\n                <div class=\"remove-confirmation-content\">\n\t    <p><p>There are unsaved changes in the current view.<\/p><p>Are you sure you want to proceed?<\/p><\/p>\n    <\/div>\n    <div class=\"modal-footer row\">\n        <div class=\"columns small-12 medium-3 medium-offset-6 medium-push-3\">\n            <button type=\"button\" ng-click=\"vm.confirm()\" class=\"button expanded primary\" data-dismiss=\"modal\">Proceed<\/button>\n        <\/div>\n        <div class=\"columns small-12 medium-3 medium-pull-3\">\n            <button type=\"button\" ng-click=\"vm.dismiss()\" class=\"button expanded default\" data-dismiss=\"modal\">Cancel<\/button>\n        <\/div>\n    <\/div>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/manage-tags":"<div class=\"rms-manage-tags\">\n    <ul kendo-sortable=\"vm.sortableObj\" k-options=\"vm.sortableOptions\" class=\"sortable-tags\">\n        <li ng-repeat=\"data in vm.data | orderBy:'position'\" ng-class=\"{'removable': data.removable, 'editable': data.editable}\" class=\"rms-manage-tag-item\">\n            <div class=\"sortable-item-handler\"><i class=\"fa fa-bars\"><\/i><\/div>\n            <div ng-bind=\"data.value\" class=\"sortable-item-label\" ng-if=\"!data.editable\">\n            <\/div>\n            <div class=\"sortable-item-label\" ng-if=\"data.editable\">\n                <input type=\"text\" ng-model=\"data.value\" name=\"manage-tag-item-<%data.id%>\" \/>\n            <\/div>\n            <div class=\"sortable-item-remove\" ng-if=\"data.removable\">\n                <button type=\"button\" class=\"button error\" ng-click=\"vm.remove(data.id, data.position)\">Remove<\/button>\n            <\/div>\n        <\/li>\n    <\/ul>\n        <a ng-click=\"vm.add()\">Add<\/a>\n<\/div>","common\/app\/components\/product-selector\/simple-product-selector-confirm-label":"<div class=\"rp-product-selector-label-wrapper\">\n    <div ng-bind=\"sps.label\"><\/div>\n<\/div>","common\/app\/components\/product-selector\/simple-product-selector":"<div class=\"rp-product-selector-wrapper\">\n    <div class=\"rp-product-selector\">\n        <div class=\"rp-product-provider\" ng-repeat=\"product in sps.products\">\n            <div class=\"rp-product-provider-content-border\" ng-class=\"{'active' : product.id == sps.selected_id}\">\n                <div class=\"rp-product-provider-content\">\n                    <div class=\"rp-product-provider-selected-icon\" ng-if=\"(product.id == sps.selected_id)\">\n                        <i class=\"fa fa-check\"><\/i>\n                    <\/div>\n                    <div class=\"rp-product-provider-image-wrapper\" ng-if=\"product.background_image\">\n                        <div class=\"rp-product-product-image\" ng-style=\"background-image: url('<%product.background_image%>')\"><\/div>\n                    <\/div>\n                    <div class=\"rp-product-provider-name\" ng-bind=\"product.name\"><\/div>\n                    <div class=\"rp-product-description-wrapper\">\n                        <div class=\"rp-product-price-wrapper\">\n                            <div class=\"rp-product-price\" ng-bind=\"product.labels.price.value\">\n                            <\/div>\n                            <div class=\"rp-product-price-unit\" ng-bind=\"product.labels.price.unit\"><\/div>\n                        <\/div>\n\n                        <div class=\"rp-product-contact-us-wrapper\" ng-if=\"product.show_upgrade && options.events.contact_us\">\n                            <button\n                                    sod-emit-event\n                                    event-name=\"options.events.contact_us\"\n                                    event-data=\"product\"\n                                    class=\"button expanded main hollow\"\n                            >\n                                Activate Now\n                            <\/button>\n                        <\/div>\n                        <div class=\"rp-product-contact-us-wrapper\" ng-if=\"product.show_credentials && options.events.credentials\" ng-show=\"!product.show_upgrade\">\n                            <button\n                                sod-emit-event\n                                event-name=\"options.events.credentials\"\n                                event-data=\"product\"\n                                    class=\"button expanded main hollow\"\n                            >\n                                Activate Now\n                            <\/button>\n                        <\/div>\n\n\n                        <div class=\"rp-product-price-desc\" ng-bind-html=\"product.labels.description\">\n                    <\/div>\n                    <\/div>\n                    <div class=\"rp-product-select-wrapper\">\n                        <div class=\"rp-product-select-button\">\n                            <button\n                                ng-if=\"product.enabled\"\n                                class=\"button expanded main hollow\"\n                                ng-click=\"sps.selectProduct(product)\"\n                                ng-class=\"{'hollow': product.id != sps.selected_id}\"\n                            >\n                                <span ng-if=\"(product.id != sps.selected_id)\"><%'Select'%><\/span>\n                                <span ng-if=\"(product.id == sps.selected_id)\"><%'Selected'%><\/span>\n                            <\/button>\n                            <button\n                                ng-if=\"!product.enabled\"\n                                class=\"button secondary default expanded\"\n                                disabled\n                                ><i class=\"fa fa-ban\"><\/i> Unavailable<\/button>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/schedule-picker":"<div class=\"schedule-picker\">\n                            <div ng-show=\"vm.scheduleActive\">\n        <div class=\"picker-item\">\n            <div class=\"picker-item__label\">Repeat every<\/div>\n            <div class=\"picker-item__options picker-item__options--flex\">\n                <div class=\"picker-item__options__counter\">\n                    <input min=\"0\" type=\"number\" ng-model=\"vm.repeatCount\" ng-change=\"vm.updateNgModel()\">\n                <\/div>\n                <div class=\"picker-item__options__type\">\n                    <selectize config=\"vm.defaultSelectizeConfig\" options=\"vm.repeatFrequencyOptions\"\n                               ng-model=\"vm.repeatFrequencyType\" ng-change=\"vm.repeatFrequencyChange()\"><\/selectize>\n                <\/div>\n            <\/div>\n            <div class=\"error-message error-text\" ng-if=\"validations.sch_recurrence_type\" ng-bind=\"validations.sch_recurrence_type | stringArray\"><\/div>\n            <div class=\"error-message error-text\" ng-if=\"validations.sch_recurrence_repeat_count\" ng-bind=\"validations.sch_recurrence_repeat_count | stringArray\"><\/div>\n\n        <\/div>\n        <div class=\"picker-item\" ng-class=\"{error: validations.sch_recurrence_weekdays}\" ng-if=\"vm.showDayOfWeek\">\n            <div class=\"picker-item__label\">Repeat on<\/div>\n            <div class=\"picker-item__options picker-item__options--width-full\">\n              <span class=\"picker-item__options__toggle\"\n                    ng-class=\"{'picker-item__options__toggle--active': vm.toggleIsActive(day.value)}\"\n                    ng-repeat=\"day in vm.weekDays track by $index\"\n                    ng-click=\"vm.toggleWeekday(day.value)\">\n                  <%day.label%>\n              <\/span>\n            <\/div>\n            <div class=\"error-message error-text\" ng-if=\"validations.sch_recurrence_weekdays\" ng-bind=\"validations.sch_recurrence_weekdays | stringArray\"><\/div>\n        <\/div>\n        <div class=\"picker-item\" ng-class=\"{error: validations.sch_recurrence_month_day}\" ng-if=\"vm.showDayOfMonth\">\n            <div class=\"picker-item__label\">Monthly on<\/div>\n            <div class=\"picker-item__options\">\n                <selectize config=\"vm.defaultSelectizeConfig\" options=\"vm.monthDays\"\n                           ng-model=\"vm.selectedMonthDay\" ng-change=\"vm.updateNgModel()\"><\/selectize>\n            <\/div>\n            <div class=\"error-message error-text\" ng-if=\"validations.sch_recurrence_month_day\" ng-bind=\"validations.sch_recurrence_month_day | stringArray\"><\/div>\n        <\/div>\n        <div class=\"picker-item\" ng-class=\"{error: validations.sch_recurrence_time}\">\n            <div class=\"picker-item__label\">Scheduled Run At<\/div>\n            <div class=\"picker-item__options\">\n                <input type=\"text\" ng-model=\"vm.startTime\"\n                       class=\"time\"\n                \/>\n                <i class=\"fa fa-clock-o\"><\/i>\n                <div class=\"error-message error-text\" ng-if=\"validations.sch_recurrence_time\" ng-bind=\"validations.sch_recurrence_time | stringArray\"><\/div>\n            <\/div>\n        <\/div>\n        <div class=\"picker-item\" ng-class=\"{error: validations.sch_timezone}\">\n            <div class=\"picker-item__label\">Timezone<\/div>\n            <div class=\"picker-item__options\">\n                <selectize config=\"vm.defaultSelectizeConfig\" options=\"vm.timezones\"\n                           ng-model=\"vm.selectedTimezone\" ng-change=\"vm.updateNgModel()\"><\/selectize>\n                <div class=\"error-message error-text\" ng-if=\"validations.sch_timezone\" ng-bind=\"validations.sch_timezone | stringArray\"><\/div>\n            <\/div>\n        <\/div>\n        <div class=\"picker-item\" ng-class=\"{error: validations.sch_effect_from}\">\n            <div class=\"picker-item__label\">First Run On<\/div>\n            <div class=\"picker-item__options\">\n                <input type=\"text\" ng-model=\"vm.startDate\"\n                    class=\"date\"\n                \/>\n                <i class=\"fa fa-calendar\"><\/i>\n                <div class=\"error-message error-text\" ng-if=\"validations.sch_effect_from\" ng-bind=\"validations.sch_effect_from | stringArray\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n","common\/app\/components\/list-filter-status-selection\/list-filter-status-selection-side":"<div class=\"list-filter-status-filter-side\">\n    <div class=\"list-filter-status-toolbar\">\n        <div class=\"list-filter-status-toolbar-content\">\n            <ul class=\"status-selection\">\n                <li ng-repeat=\"status in vm.data\">\n                    <a ng-click=\"vm.selectStatus(status)\"\n                       ng-class=\"{\n                            'active': vm.isActive(status)\n                        }\">\n                        <span class=\"status-selection-label\" ng-bind=\"status.label\"><\/span>\n                        <span class=\"status-selection-count badge secondary\" ng-bind=\"status.count\"><\/span>\n                    <\/a>\n                <\/li>\n            <\/ul>\n        <\/div>\n    <\/div>\n    <rms-list-filter options=\"vm.options\" set-external-filter=\"vm.setExternalStatus\" grid-refresh=\"vm.refreshData()\" hide-filter=\"true\"><\/rms-list-filter>\n<\/div>","common\/app\/components\/list-filter-status-selection\/list-filter-status-selection":"<div class=\"list-filter-status-filter\" ng-class=\"{ 'sidebar-active' : vm.listFilterData.pageData.sidebar_active }\">\n    <div class=\"list-filter-status-toolbar\">\n        <div class=\"list-filter-status-toolbar-content\">\n            <ul class=\"status-selection\">\n                <li ng-repeat=\"status in vm.data\">\n                    <a ng-click=\"vm.selectStatus(status)\"\n                       ng-class=\"{\n                            'active': vm.isActive(status)\n                        }\">\n                        <span class=\"status-selection-count\" ng-bind=\"status.count\"><\/span>\n                        <span class=\"status-selection-label\" ng-bind=\"status.label\"><\/span>\n                    <\/a>\n                <\/li>\n            <\/ul>\n        <\/div>\n    <\/div>\n    <rms-list-filter options=\"vm.options\" set-external-filter=\"vm.setExternalStatus\" grid-refresh=\"vm.refreshData()\"><\/rms-list-filter>\n<\/div>","common\/app\/components\/list-editable\/toolbar":"<div class=\"list-view-toolbar\">\n    <div>\n        <ul class=\"menu\">\n            <li>\n                <i class=\"fa fa-square-o\"><\/i> Select All\n            <\/li>\n            <li>\n                <sod-sort-dropdown get-sort=\"vm.getSort\" options=\"vm.options.list.sort\" toggle-refresh=\"vm.refresh\"><\/sod-sort-dropdown>\n            <\/li>\n        <\/ul>\n    <\/div>\n    <div class=\"right\">\n        <ul class=\"menu\">\n                        <li ng-click=\"vm.normalAction('add')\"><i class=\"fa fa-plus\"><\/i> Add<\/li>\n            <li ng-click=\"vm.normalAction('copy')\"><i class=\"fa fa-files-o\"><\/i> Copy From<\/li>\n        <\/ul>\n    <\/div>\n    <div>\n            <\/div>\n<\/div>\n","common\/app\/components\/list-editable\/index":"<div class=\"list-editable-view\" ng-class=\"vm.options.wrapper_class\" style=\"padding-bottom: 41px;\">\n        <div kendo-list-view='vm.ref.list' k-options='vm.kendoOptions' ng-class=\"{ 'no-footer': !vm.options.wrapper_form}\"><\/div>\n    <div class=\"empty-list-wrapper\" ng-style=\"{'bottom': vm.no_records ? 0 : 'unset'}\" ng-bind-html=\"vm.options.list.no_records\" ng-if=\"vm.no_records\">\n    <\/div>\n    <div ng-if=\"vm.options.wrapper_form\">\n        <div ng-repeat=\"button in vm.options.wrapper_form\" style=\"display:inline-block;\">\n            <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/braintree-wrapper":"<div id=\"dropin-container\"><\/div>","common\/app\/components\/view-email":"<span class=\"\">\n    <span class=\"\" ng-bind=\"'{0} Recipients' | stringFormat:[vm.emails.length]\" ng-if=\"vm.showRecipientsCount()\"><\/span>\n    <span class=\"view-emails-labels-wrapper\" ng-if=\"vm.showRecipients()\">\n        <a ng-repeat=\"email in vm.emails\" class=\"label default\" ng-bind=\"email | emailLabel\"><\/a>\n    <\/span>\n    <a ng-click=\"vm.toggle()\" ng-if=\"vm.showShowMore()\" class=\"position-left\">(Show More)<\/a>\n    <a ng-click=\"vm.toggle()\" ng-if=\"vm.showHide()\" class=\"position-left\">(Hide)<\/a>\n<\/span>","common\/app\/components\/email-template\/index-email-template":"<div class=\"email-template add\" style=\"padding: 0 1rem;position: relative;padding-bottom: calc(10px + 46px) !important;\">\n    <div class=\"row\">\n        <div class=\"columns small-3 email-template-attributes\">\n            <div class=\"pb-3\">\n                <div class=\"label-text\">\n                    <label class=\"label-text text-bold\">Template Language<\/label>\n                    <span class=\"label ng-binding text-base\" style=\"font-weight: bold;\" ng-bind=\"vm.options.language\"><\/span>\n                <\/div>\n            <\/div>\n            <div\n                ng-class=\"{ error: vm.options.validationResult[vm.options.field_map.template_name].length }\">\n                <label class=\"label-text\">Template Name <span class=\"text-red\">*<\/span>\n                    <input type=\"text\" placeholder=\"\" ng-model=\"vm.model[vm.options.field_map.template_name]\" validator-required=\"<% vm.options.field_map.template_name %>\" \/>\n                    <span class=\"form-validation\" ng-show=\"vm.options.validationResult[vm.options.field_map.template_name].length\" ng-bind=\"vm.options.validationResult[vm.options.field_map.template_name][0]\"><\/span>\n                <\/label>\n            <\/div>\n            <div\n                ng-class=\"{ error: vm.options.validationResult[vm.options.field_map.template_name].length }\">\n                <label class=\"label-text\">Template Type <span class=\"text-red\">*<\/span>\n                    <selectize\n                        config=\"vm.templateTypeSelectizeConfig\"\n                        options=\"vm.templateTypeSelectizeOptions\"\n                        ng-model=\"vm.model[vm.options.field_map.template_type]\"><\/selectize>\n                    <div class=\"selectize-loading-mask\" ng-if=\"vm.fetching.templateType\">\n                        <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"  \/>\n                    <\/div>\n                    <span class=\"form-validation\" ng-show=\"vm.options.validationResult[vm.options.field_map.template_type].length\" ng-bind=\"vm.options.validationResult[vm.options.field_map.template_type][0]\"><\/span>\n                <\/label>\n            <\/div>\n            <div class=\"email-template-attributes_placeholders\">\n                <div>Available Placeholders<\/div>\n                <div class=\"email-template-attributes_placeholders_items\">\n                    <span\n                        ng-repeat=\"placeholder in vm.templatePlaceholders | orderBy: 'required'\"\n                        tooltips\n                        tooltip-template=\"<% vm.generateToolTipPlaceholder() %>\"\n                        tooltip-speed=\"fast\"\n                        tooltip-show=\"<% $index === 1 %>\"\n                    >\n                        <span\n                            class=\"label\"\n                            ng-bind=\"placeholder.label\"\n                            ng-click=\"vm.handlePlaceholder(placeholder)\"\n                            ng-class=\"{ active: placeholder.required }\"><\/span>\n                    <\/span>\n                <\/div>\n            <\/div>\n        <\/div>\n        <div\n            class=\"columns small-9 email-template-content\">\n            <div class=\"template-subject\"\n                 ng-class=\"{ error: vm.options.validationResult[vm.options.field_map.template_subject].length }\">\n                <label class=\"label-text\">Subject <span class=\"text-red\">*<\/span><\/label>\n                <textarea\n                    name=\"txt_subject\"\n                    ui-tinymce=\"vm.SODTMCESubjectOptions\"\n                    ng-model=\"vm.model[vm.options.field_map.template_subject]\"><\/textarea>\n                <span class=\"form-validation\" ng-show=\"vm.options.validationResult[vm.options.field_map.template_subject].length\" ng-bind=\"vm.options.validationResult[vm.options.field_map.template_subject][0]\"><\/span>\n            <\/div>\n            <div class=\"email-template-content_editor\"\n                 ng-class=\"{ error: vm.options.validationResult[vm.options.field_map.template_body].length }\">\n                <label class=\"label-text\">Content <span class=\"text-red\">*<\/span><\/label>\n                <div class=\"template-body\">\n                    <textarea ui-tinymce=\"vm.tmceOptions\" ng-model=\"vm.model[vm.options.field_map.template_body]\" name=\"txt_description\"><\/textarea>\n                <\/div>\n                <span class=\"form-validation\" ng-show=\"vm.options.validationResult[vm.options.field_map.template_body].length\" ng-bind=\"vm.options.validationResult[vm.options.field_map.template_body][0]\"><\/span>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<div style=\"background-color: white;border-top: 1px solid #DDDDDD;box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.15);padding: 0.5em 2rem;position: absolute;bottom: 0;z-index: 10;left: 0;right: 0;margin: 0 -1rem;border-bottom-left-radius: 6px;border-bottom-right-radius: 6px;\">\n    <div>\n            <span ng-repeat=\"button in vm.options.buttons\">\n                <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n            <\/span>\n    <\/div>\n<\/div>\n","common\/app\/components\/permissions\/detail-panel":"<div ng-if=\"vm.options.entity_selected && !vm.options.entity_loading\">\n    <permissions-item-list item=\"vm.selectedItem\"><\/permissions-item-list>\n<\/div>\n<div ng-if=\"!vm.options.entity_selected && !vm.options.entity_loading\">\n    Please select an option\n<\/div>\n<div ng-if=\"vm.options.entity_loading\">\n    Loading...\n<\/div>","common\/app\/components\/permissions\/entity-selector-form":"<form>\n<div class=\"permission-entity-selector-form\">\n    <div class=\"permission-entity-selector-elements\">\n        <div ng-repeat=\"element in vm.elements\">\n            <fb-element-generator\n                fb-element=\"element\"\n                model=\"vm.model\"\n                rendered-elements=\"vm.renderedElements\"\n                element-identifier=\"element.name\"\n                form-identifier=\"vm.formIdentifier\"\n            >\n            <\/fb-element-generator>\n        <\/div>\n    <\/div>\n    <div class=\"permission-entity-selector-actions\">\n        <fb-field-buttons-wrapper buttons=\"vm.buttons\" type=\"vm.buttonsWrapperType\" ng-if=\"vm.loaded\">\n        <\/fb-field-buttons-wrapper>\n    <\/div>\n<\/div>\n<\/form>\n","common\/app\/components\/permissions\/selector-options":"<div>#label#<\/div>","common\/app\/components\/permissions\/section":"<rms-tree-view options=\"vm.options\" items=\"vm.items\" on-item-click=\"vm.onItemClick(item)\"><\/rms-tree-view>","common\/app\/components\/permissions\/header":"<div class=\"permissions-header\">\n    <div>\n        <div class=\"description\">Select a role type to view the permissions<\/div>\n        <div class=\"user-types-wrapper\">\n            <div ng-repeat=\"selectItem in vm.options.select_options\" panel-action event=\"selectItem.event\" triggered-when=\"vm.options.entity_selector.model.selected !== selectItem.value\">\n                <span class=\"fa-stack\">\n                  <i class=\"fa fa-circle-o fa-stack-2x\"><\/i>\n                  <i class=\"fa fa-circle fa-stack-1x\" ng-if=\"vm.options.entity_selector.model.selected === selectItem.value\"><\/i>\n                <\/span>\n                <span ng-bind=\"selectItem.label\"><\/span>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"permissions-form\">\n        <div class=\"user-role-selector\" ng-if=\"!vm.options.loading\">\n            <fb-form-generator fb-data=\"vm.options.entity_selector.form\" fb-model='vm.options.entity_selector.model'><\/fb-form-generator>\n        <\/div>\n        <div class=\"permissions-actions\" ng-if=\"vm.selectedItem && vm.model.editable\">\n            <fb-field-button element=\"buttonAction\" ng-repeat=\"buttonAction in vm.options.buttons\"><\/fb-field-button>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/permissions\/item":"<div class=\"permissions-item-wrapper\">\n    <div ng-click=\"vm.toggle(vm.item)\" class=\"permissions-item\" ng-class=\"vm.getReadOnlyClass()\">\n        <i class=\"fa\" ng-class=\"vm.getClass()\"><\/i>\n        <% vm.item.label %>\n    <\/div>\n    <div class=\"permissions-item-description\" ng-bind=\"vm.item.description\">\n    <\/div>\n<\/div>","common\/app\/components\/permissions\/main":"<div class=\"permissions\">\n    <permissions-header><\/permissions-header>\n    <div class=\"permissions-content-header\" ng-if=\"vm.model.permissions\">\n        <span class=\"header-text\" ng-bind=\"vm.model.entity_name|replaceTemplate:'Permissions for &lt;value&gt;'\"><\/span>\n            <\/div>\n    <div class=\"permissions-content\" ng-if=\"vm.selectedItem\" >\n        <div class=\"permissions-section\">\n            <rms-tree-view items=\"vm.options.permission_sections\" options=\"vm.options.section_options\" on-item-click=\"vm.onItemClick(item)\"><\/rms-tree-view>\n        <\/div>\n        <div class=\"permissions-details\" ng-class=\"{ 'show-description': vm.showDescription }\">\n            <permissions-detail-panel ><\/permissions-detail-panel>\n        <\/div>\n    <\/div>\n    <div ng-if=\"!vm.selectedItem\" class=\"permission-entity-not-selected\">\n        Please select a Role Type\n    <\/div>\n<\/div>\n","common\/app\/components\/permissions\/item-list":"<div class=\"section\">\n    <div class=\"section-header\" ng-bind=\"vm.item.label\" ng-if=\"vm.item.items.length\"><\/div>\n    <div ng-if=\"vm.item.items\" class=\"section-items-wrapper\">\n        <permissions-item ng-repeat=\"permissionItem in vm.item.items\" item=\"permissionItem\">\n        <\/permissions-item>\n    <\/div>\n    <div ng-if=\"vm.item.children\" class=\"section-children-wrapper\">\n        <div class=\"section-children\" ng-repeat=\"permissionChildren in vm.item.children\">\n            <permissions-item-list item=\"permissionChildren\">\n            <\/permissions-item-list>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/google-doc-viewer":"<div class=\"google-doc-file-viewer document-viewer\"><\/div>\n\n<div ng-if=\"vm.download\">\n    <button class=\"button main\" ng-click=\"vm.downloadFile()\">Download<\/button>\n<\/div>\n","common\/app\/components\/information-notification-submenu":"<div class=\"label bg-orange badge-count\" ng-bind=\"in_submenu_ctrl.unread_count\" ng-show=\"in_submenu_ctrl.unread_count\">\n<\/div>\n<div class=\"dropdown-notification-box\" id=\"menu-box\" style=\"display: none\">\n  <div class=\"dropdown-notification-list\">\n    <div class=\"dropdown-head\">\n      <h5 class=\"announcements\">Announcements <\/h5>\n      <a ng-click=\"in_submenu_ctrl.mark_all_as_read()\" ng-if=\"in_submenu_ctrl.unread_count > 0\">Mark all as read <\/a>\n    <\/div>\n    <div style=\"overflow: auto; max-height:400px;\" ng-if=\"in_submenu_ctrl.total > 0\">\n      <div class=\"dropdown-title\" ng-repeat=\"row in in_submenu_ctrl.rows\">\n        <div class=\"dropdown-content\" ng-class=\"{ 'read': row.read_status.key ==='red' }\" ng-click=\"in_submenu_ctrl.action(row)\">\n            <div class=\"col-md-3 icon\">\n              <i class=\"fa <%row.icon_class%>\" ng-class=\"{ 'read': row.read_status.key ==='red' }\" ><\/i>\n            <\/div>\n            <div class=\"content-detail\">\n                <div class=\"date\"><% row.created_at %><\/div>\n                <div class=\"title\"><%row.title%><\/div>\n                <div class=\"sub-title\"><%row.sub_title%><\/div>\n            <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n    <div ng-if=\"in_submenu_ctrl.total == 0\">\n      <div class=\"dropdown-title no-announcements\">\n        <div class=\"dropdown-content read\">\n            <div class=\"content-detail\">\n                <div class=\"title\">No new announcements <\/div>\n            <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n","common\/app\/components\/sort-selector":"<div class=\"options-selector-container\"\n     ng-class=\"{ 'available-options-active': scCtrl.available_is_active && !scCtrl.isReadOnly() }\">\n\n    <div class=\"available-options\">\n        <div class=\"available-options-sidebar\" ng-click=\"scCtrl.openAvailable()\" ng-if=\"!scCtrl.isReadOnly()\">\n            Available Columns &nbsp;&nbsp;<i class=\"fa fa-angle-double-down\"><\/i>\n        <\/div>\n        <div class=\"available-options-content\">\n            <div class=\"options-selector-toolbar\">\n                <h6>Available Columns<\/h6>\n                <ul>\n                    <li ng-click=\"scCtrl.closeAvailable()\">\n                        <i class=\"fa fa-angle-double-left\"><\/i> Hide\n                    <\/li>\n                    <li class=\"right\" ng-click=\"scCtrl.addAll()\" ng-if=\"scCtrl.available.length > 0\">\n                        <i class=\"fa fa-plus\"><\/i> Add All\n                    <\/li>\n                <\/ul>\n            <\/div>\n            <ul class=\"options-selector-list available-list\" ng-if=\"scCtrl.available.length > 0\">\n                <li ng-repeat=\"availableItem in scCtrl.available\">\n                    <span ng-bind=\"availableItem[scCtrl.labelField]\"><\/span>\n                    <a ng-click=\"scCtrl.addItem(availableItem)\">\n                        <i class=\"fa fa-plus\"><\/i>\n                    <\/a>\n                <\/li>\n            <\/ul>\n            <div ng-if=\"scCtrl.available.length === 0\" class=\"p-20 text-center available-list-empty\">\n                <p>You have already selected all the available columns<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"selected-options\">\n        <div class=\"options-selector-toolbar\">\n            <h6>Selected Columns<\/h6>\n            <ul>\n                <li class=\"right\" ng-click=\"scCtrl.removeAll()\"\n                    ng-if=\"scCtrl.selected.length > 0 && !scCtrl.isReadOnly()\">\n                    <i class=\"fa fa-times\"><\/i> Remove All\n                <\/li>\n            <\/ul>\n        <\/div>\n\n        <ul kendo-sortable k-options='scCtrl.selectedConfig' class=\"options-selector-list selected-list\">\n            <li ng-repeat=\"selectedItem in scCtrl.selected\" ng-class=\"{ 'disabled-item': scCtrl.isReadOnly()}\">\n                <i class=\"fa fa-bars\" ng-if=\"!scCtrl.isReadOnly()\"><\/i>\n                <span ng-bind=\"selectedItem[scCtrl.labelField]\"><\/span>\n                <a ng-click=\"scCtrl.toggleSortDirection(selectedItem)\" ng-if=\"!scCtrl.isReadOnly()\">\n                    <i class=\"fa\" ng-class=\"{\n                        'fa-sort-alpha-asc ascending': (selectedItem.sort === 'asc'),\n                        'fa-sort-alpha-desc descending': (selectedItem.sort === 'desc'),\n                    }\"><\/i>\n                <\/a>\n                <a ng-click=\"scCtrl.removeItem(selectedItem)\" ng-if=\"!scCtrl.isReadOnly()\">\n                    <i class=\"fa fa-times\"><\/i>\n                <\/a>\n            <\/li>\n        <\/ul>\n        <div ng-if=\"scCtrl.selected.length === 0\" class=\"p-20 text-center\">\n            <p><i class=\"fa fa-arrow-left\"><\/i> Add columns from the available list on the left.<\/p>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/options-selector":"<div class=\"options-selector-container\"\n     ng-class=\"{ 'available-options-active': scCtrl.available_is_active && !scCtrl.isReadOnly() }\">\n\n    <div class=\"available-options\">\n        <div class=\"available-options-sidebar\" ng-click=\"scCtrl.openAvailable()\" ng-if=\"!scCtrl.isReadOnly()\">\n            Available Columns &nbsp;&nbsp;<i class=\"fa fa-angle-double-down\"><\/i>\n        <\/div>\n        <div class=\"available-options-content\">\n            <div class=\"options-selector-toolbar\">\n                <h6>Available Columns<\/h6>\n                <ul>\n                    <li ng-click=\"scCtrl.closeAvailable()\">\n                        <i class=\"fa fa-angle-double-left\"><\/i> Hide\n                    <\/li>\n                    <li class=\"right\" ng-click=\"scCtrl.addAll()\" ng-if=\"scCtrl.available.length > 0\">\n                        <i class=\"fa fa-plus\"><\/i> Add All\n                    <\/li>\n                <\/ul>\n            <\/div>\n            <ul class=\"options-selector-list available-list\" ng-if=\"scCtrl.available.length > 0\">\n                <li ng-repeat=\"availableItem in scCtrl.available\">\n                    <span ng-bind=\"availableItem[scCtrl.labelField]\"><\/span>\n                    <a ng-click=\"scCtrl.addItem(availableItem)\">\n                        <i class=\"fa fa-plus\"><\/i>\n                    <\/a>\n                <\/li>\n            <\/ul>\n            <div ng-if=\"scCtrl.available.length === 0\" class=\"p-20 text-center available-list-empty\">\n                <p>You have already selected all the available columns<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"selected-options\">\n        <div class=\"options-selector-toolbar\">\n            <h6>Selected Columns<\/h6>\n            <ul>\n                <li class=\"right\" ng-click=\"scCtrl.removeAll()\"\n                    ng-if=\"scCtrl.selected.length > 0 && !scCtrl.isReadOnly()\">\n                    <i class=\"fa fa-times\"><\/i> Remove All\n                <\/li>\n            <\/ul>\n        <\/div>\n\n        <ul kendo-sortable k-options='scCtrl.selectedConfig' class=\"options-selector-list selected-list\">\n            <li ng-repeat=\"selectedItem in scCtrl.selected\" ng-class=\"{ 'disabled-item': scCtrl.isReadOnly()}\">\n                <i class=\"fa fa-bars\" ng-if=\"!scCtrl.isReadOnly()\"><\/i>\n                <span ng-bind=\"selectedItem[scCtrl.labelField]\"><\/span>\n                <a ng-click=\"scCtrl.removeItem(selectedItem)\" ng-if=\"!scCtrl.isReadOnly()\">\n                    <i class=\"fa fa-times\"><\/i>\n                <\/a>\n            <\/li>\n        <\/ul>\n        <div ng-if=\"scCtrl.selected.length === 0\" class=\"p-20 text-center\">\n            <p><i class=\"fa fa-arrow-left\"><\/i> Add columns from the available list on the left.<\/p>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/secondary-selection":"<ul>\n    <li ng-repeat=\"item in scopeModel.data\">\n        <label>\n            <input type=\"checkbox\" ng-model=\"item.selected\" ng-change=\"events.selectionChanged()\"> <%item.name%> (<%item.email%>)\n        <\/label>\n    <\/li>\n<\/ul>","common\/app\/components\/document-library\/document-viewer-dialog":"<div class=\"modal fade\" ng-show=\"vm.show\">\n    <div class=\"modal-dialog <%vm.options.modalSize%> <%vm.options.modalClass%>  \">\n        <div class=\"modal-header \" ng-if=\"!vm.options.hideModalHeader\">\n            <h4 class=\"modal-title\">\n                <span ng-bind=\"vm.options.title\"><\/span>\n                <span ng-if=\"vm.options.showActionDataName && vm.dialogOptions.actionData.name\"> - <span ng-bind=\"vm.dialogOptions.actionData.name\"><\/span><\/span>\n            <\/h4>\n            <button class=\"close\"\n                    ng-click=\"vm.dismiss()\">\n                <i class=\"fa fa-times\"><\/i>\n            <\/button>\n        <\/div>\n        <div class=\"modal-content\">\n                <div style=\"margin-bottom: 2px;\">\n        <div class=\"flex items-center justify-end w-full\" >\n            <div class=\"text-xs text-bold mr-4\">Refresh the viewer if it does not load<\/div>\n            <button ng-click=\"vm.panelState.structure.refreshViewer()\" class=\"button small default no-margin\">Refresh Viewer<\/button>\n        <\/div>\n    <\/div>\n    <sod-document-library-google-doc url=\"vm.options.fileUrl\" mime-type=\"vm.options.mimeType\" download=\"vm.options.downloadUrl\" refresh=\"vm.panelState.structure.refreshViewer\" notify-label=\"&lt;div&gt;Thank you for waiting as we prepare to download your file...&lt;\/div&gt;\"><\/sod-document-library-google-doc>\n        <\/div>\n        <div class=\"modal-footer hide\">\n                    <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/document-library\/preview-action-bar":"<div class=\"document-library-preview-action-bar\">\n    <h3 class=\"document-library-preview-header\" ng-bind=\"vm.pageData.detailPanel.dataItem.file_name\"><\/h3>\n    <span class=\"label\"\n          ng-class=\"'label-color-' + vm.pageData.detailPanel.dataItem.document_type_id\"\n          ng-bind=\"vm.pageData.detailPanel.dataItem.document_type\"\n    ><\/span>\n    <div>\n        <button type=\"button\" class=\"button default\" ng-click=\"vm.showList()\">Show All Documents<\/button>\n    <\/div>\n<\/div>","common\/app\/components\/manage-form\/field":"<div ng-class=\"{ 'section': fieldModel.section }\">\n    <div class=\"mf-field\"  ng-class=\"{ 'section-header': fieldModel.section }\">\n\n        <div class=\"mf-field-name\" ng-class=\"{ 'has-toggleable': fieldModel.section }\" ng-click=\"toggleChildrenView()\" >\n            <div class=\"mf-section-toggle\" ng-if=\"fieldModel.section\"  >\n                <i class=\"fa\" ng-if=\"fieldModel.section\" ng-class=\"{ 'fa-angle-down': isOpen, 'fa-angle-right': !isOpen }\"><\/i>\n            <\/div>\n            <span ng-bind=\"fieldModel.label\" ><\/span>\n            <span ng-bind=\"fieldModel.tooltip\" class=\"text-muted text-xs ml-2\"><\/span>\n\n        <\/div>\n        <div class=\"mf-field-actions\">\n            <div class=\"display-inline-block\"  ng-if=\"fieldModel.section && fieldModel.min_req_setting\">\n                <rms-field-section-counter ng-model=\"fieldModel.min_items\"><\/rms-field-section-counter>\n            <\/div>\n            <ul ng-if=\"fieldModel.toggleable\">\n                <li ng-click=\"changeValue('req')\" ng-class=\"{ 'selected': fieldModel.value === 'req'}\" class=\"mf-field-action\" ng-if=\"!fieldModel.section\"><i class=\"fa fa-asterisk\"><\/i><\/li>\n                <li ng-click=\"changeValue('shw')\" ng-class=\"{ 'selected': fieldModel.value === 'shw'}\" class=\"mf-field-action\"><i class=\"fa fa-check\"><\/i><\/li>\n                <li ng-click=\"changeValue('hid')\" ng-class=\"{ 'selected': fieldModel.value === 'hid'}\" class=\"mf-field-action\"><i class=\"fa fa-times\"><\/i><\/li>\n            <\/ul>\n            <ul ng-if=\"!fieldModel.toggleable\">\n                <li class=\"mf-field-action selected\"><i class=\"fa fa-asterisk\"><\/i><\/li>\n            <\/ul>\n        <\/div>\n    <\/div>\n\n    <div ng-if=\"fieldModel.fields\" ng-show=\"isOpen\" class=\"field-children\" >\n        <rms-manage-form-field ng-repeat=\"field in fieldModel.fields\" ng-model=\"field\" ng-show=\"field.visible\"><\/rms-manage-form-field>\n    <\/div>\n<\/div>\n","common\/app\/components\/manage-form\/section":"<div>section<\/div>","common\/app\/components\/manage-form\/section-counter":"<div class=\"mf-section-counter\">\n    <span class=\"mfs-label\">min<\/span>\n    <span class=\"mfs-action\" ng-click=\"ctrl.decrement()\"><i class=\"fa fa-minus\"><\/i><\/span>\n    <input type=\"text\" readonly maxlength=\"2\" ng-model=\"ctrl.value\"\/>\n    <span class=\"mfs-action\" ng-click=\"ctrl.increment()\"><i class=\"fa fa-plus\"><\/i><\/span>\n<\/div>\n","common\/app\/components\/manage-form\/manage-form":"<div class=\"manage-form\">\n    <rms-manage-form-field ng-repeat=\"field in model\" ng-model=\"field\" ng-if=\"field.visible\"><\/rms-manage-form-field>\n<\/div>","common\/app\/components\/manage-form\/panel-content-template":"<div class=\"p-20\">\n<rms-manage-form options=\"vm.panelState.structure.options\" ng-model=\"vm.panelState.model.rows\"><\/rms-manage-form>\n<\/div>","common\/app\/components\/activities\/list-panel\/group-header\/default":"<span><span class=\"activity-group-header-wrapper\"><span class=\"activity-group-header\" ng-bind=\"dataItem.value\"><\/span><\/span><span class=\"activity-no-records\" ng-if=\"dataItem.items.length == 0\" ng-bind=\"vm.pageData.options.activities.labels.common.activity_group_no_records|stringFormat:[dataItem.value]\"><\/span><\/span>","common\/app\/components\/activities\/list-panel\/row-templates\/default":"<rms-activity-wrapper item=\"dataItem\"> <rms-activity item=\"dataItem\" type=\"dataItem.type\" options=\"vm.pageData.options.activities.reply_options\"><\/rms-activity> <\/rms-activity-wrapper>","common\/app\/components\/activities\/list-panel\/no-record-template":"<div class=\"activity-no-records-wrapper\">\n    <div class=\"activity-no-records\">\n        <i class=\"fa fa-times fa-inverse\"><\/i>\n        No records found\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activities-top-actions":"","common\/app\/components\/activities\/list-panel\/activities-bottom-actions":"<div class=\"activities-bottom-actions\">\n                                                                                              <div class=\"activities-add-attachments-wrapper\">\n        <button type=\"button\" class=\"button default\" ng-click=\"vm.onAddAttachmentClick()\" ng-disabled=\"vm.pageData.options.attachmentOptions.preattached.loading\">Add Attachment<\/button>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activities-panel-list":"<div class=\"activity-list-wrapper\">\n    <div class=\"activity-toolbar\">\n        <rms-filter-bar options=\"vm.filterOptions\" get-query=\"vm.getQuery\" refresh-grid=\"vm.refreshActivities()\" reset-query=\"vm.resetQuery\"><\/rms-filter-bar>\n    <\/div>\n    <div kendo-grid=\"vm.pageData.activities.callback\" k-data-source=\"vm.listDataSource\" class=\"activity-list\" k-options=\"vm.gridOptions\">\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activities-wrapper":"<div ng-if=\"vm.pageData.options.activityTypes\" class=\"activities-input-section\">\n    <div>\n        <rms-activity-main-input-panel class=\"rms-activities-input-panel\" options=\"vm.pageData.options\"><\/rms-activity-main-input-panel>\n    <\/div>\n\n<\/div>\n<rms-activities-panel-list><\/rms-activities-panel-list>","common\/app\/components\/activities\/list-panel\/activity-type\/note":"<div class=\"activity\">\n    <div class=\"activity-log\">\n        <div class=\"activity-user-image\" style=\"background-image: url('<%vm.item.created_by | userProfileImage%>')\">\n\n        <\/div>\n        <div class=\"activity-log-content\">\n            <span  ng-bind-html=\"vm.item.description\"><\/span>\n        <\/div>\n        <div class=\"activity-log-datetime\" ng-bind=\"vm.item.created_on\"><\/div>\n    <\/div>\n    <div class=\"activity-content activity-note\" ng-if=\"vm.item.content.description\" ng-bind-html=\"vm.item.content.description | trustAsHtml\">\n\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activity-type\/tasks":"tasks","common\/app\/components\/activities\/list-panel\/activity-type\/email":"<div class=\"activity\">\n    <div class=\"activity-log\">\n        <div class=\"activity-user-image\" style=\"background-image: url('<%vm.item.created_by | userProfileImage%>')\">\n        <\/div>\n        <div class=\"activity-log-content\">\n            <span ng-bind-html=\"vm.item.description\"><\/span>\n        <\/div>\n        <div class=\"activity-log-datetime\" ng-bind=\"vm.item.created_on\"><\/div>\n        <custom-dropdown-button\n                ng-if=\"vm.item.allow_reply\"\n                button-content=\"'<i class=\\'fa fa-caret-down\\'><\/i>'\"\n                quick-button-content=\"'<i class=\\'fa fa-reply\\'><\/i>'\"\n                quick-button-action=\"vm.toggleInput('reply')\"\n        >\n            <li><a ng-click=\"vm.toggleInput('reply')\">Reply<\/a><\/li>\n            <li><a ng-click=\"vm.toggleInput('reply_all')\">Reply All<\/a><\/li>\n                    <\/custom-dropdown-button>\n    <\/div>\n    <div class=\"activity-content activity-email\" ng-if=\"vm.item.content\">\n        <div ng-show=\"vm.showEmailContent\">\n            <div class=\"activity-email-subject\" ng-bind=\"vm.item.content.subject\"><\/div>\n            <div class=\"activity-email-from\" ng-if=\"vm.item.content.from\">\n                <span ng-bind=\"vm.labels.email.from\"><\/span> :\n                <show-emails emails=\"vm.item.content.from\" ng-if=\"vm.item.content.from.length\"><\/show-emails>\n            <\/div>\n            <div class=\"activity-email-to\" ng-if=\"vm.item.content.to\">\n                <span ng-bind=\"vm.labels.email.to\"><\/span> :\n                <show-emails emails=\"vm.item.content.to\" ng-if=\"vm.item.content.to.length\"><\/show-emails>\n            <\/div>\n            <div class=\"activity-email-cc\" ng-if=\"vm.item.content.cc.length\">\n                <span ng-bind=\"vm.labels.email.cc\"><\/span> :\n                <show-emails emails=\"vm.item.content.cc\"><\/show-emails>\n            <\/div>\n            <div class=\"activity-email-bcc\" ng-if=\"vm.item.content.bcc.length\">\n                <span ng-bind=\"vm.labels.email.bcc\"><\/span> :\n                <show-emails emails=\"vm.item.content.bcc\"><\/show-emails>\n            <\/div>\n            <div class=\"activity-email-content\">\n                <sod-iframe-preview content=\"vm.item.content.description\"><\/sod-iframe-preview>\n            <\/div>\n\n\n            <div class=\"activities-attachments-list\"\n                 ng-if=\"vm.item.content.attachments && vm.item.content.attachments.length\"\n            >\n                <ul>\n                    <li ng-repeat=\"attachment in vm.item.content.attachments\">\n                        <i class=\"fa fa-paperclip\"><\/i>\n                        <a ng-href=\"<%attachment.file_url%>\" target=\"_blank\"><span ng-bind=\"attachment.name\"><\/span><\/a>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n        <div class=\"text-center\">\n            <a ng-if=\"!vm.showEmailContent\" ng-click=\"vm.toggleReply(true)\" class=\"show-content\">\n                <i class=\"fa fa-angle-double-down\"><\/i>\n            <\/a>\n            <a ng-if=\"vm.showEmailContent\" ng-click=\"vm.toggleReply(false)\" class=\"hide-content\">\n                <i class=\"fa fa-angle-double-up\"><\/i>\n            <\/a>\n        <\/div>\n    <\/div>\n    <div class=\"activity-content-input\" ng-if=\"vm.showActivityContentInput\">\n        <rms-activity-reply-input-panel options=\"vm.pageData.options.reply_options\" original=\"vm.item\" close-reply=\"vm.closeReply()\"><\/rms-activity-reply-input-panel>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activity-type\/schedule":"<div class=\"activity\">\n    <div class=\"activity-log\">\n        <div class=\"activity-user-image\" style=\"background-image: url('<%vm.item.created_by | userProfileImage%>')\">\n\n        <\/div>\n        <div class=\"activity-log-content\">\n            <span  ng-bind-html=\"vm.item.description\"><\/span>\n        <\/div>\n        <div class=\"activity-log-datetime\" ng-bind=\"vm.item.created_on\"><\/div>\n    <\/div>\n    <div class=\"activity-content activity-schedule\">\n        <div class=\"activity-schedule-left\">\n            <div class=\"activity-schedule-event-name\" ng-bind=\"vm.item.content.name\"><\/div>\n            <div class=\"activity-schedule-event-date\" ng-bind=\"vm.item.content.date\"><\/div>\n            <div class=\"activity-schedule-event-description\" ng-bind=\"vm.item.content.description\"><\/div>\n        <\/div>\n        <div class=\"activity-schedule-right\">\n            <div class=\"activity-schedule-guest-label\" ng-bind=\"vm.pageData.options.activities.labels.guests\"><\/div>\n            <div class=\"activity-schedule-guest-list\">\n                <div ng-repeat=\"guest in vm.item.content.guests\" class=\"activity-schedule-event-guest\">\n                    <div class=\"activity-schedule-event-guest-profile\" style=\"background-image: url('<%guest | userProfileImage %>')\"><\/div>\n                    <div class=\"activity-schedule-event-guest-description\" ng-bind=\"guest.description\"><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activity-type\/log":"<div class=\"activity\">\n    <div class=\"activity-log\">\n        <div class=\"activity-user-image\" style=\"background-image: url('<%vm.item.created_by | userProfileImage%>')\">\n\n        <\/div>\n        <div class=\"activity-log-content\">\n            <span  ng-bind-html=\"vm.item.description\"><\/span>\n        <\/div>\n        <div class=\"activity-log-datetime\" ng-bind=\"vm.item.created_on\"><\/div>\n    <\/div>\n    <div class=\"activity-content activity-note\" ng-if=\"vm.item.content.description\" ng-bind-html=\"vm.item.content.description | trustAsHtml\">\n\n    <\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activities-type-selector":"<ul class='activities-type-selector' ng-if=\"vm.pageData.options.activityTypes.length > 1\">\n    <li ng-repeat-start=\"activityType in vm.pageData.options.activityTypes\"\n        ng-if=\"activityType.type != vm.pageData.inputData.options.type\"\n        ng-click=\"vm.selectType(activityType)\"\n    >\n        <i class='fa fa-<%activityType.icon%>'><\/i> <%activityType.labels.title%>\n    <\/li>\n    <li ng-repeat-end\n        ng-if=\"activityType.type == vm.pageData.inputData.options.type\"\n        class=\"active\"\n    >\n        <i class='fa fa-<%activityType.icon%>'><\/i> <%activityType.labels.title%>\n    <\/li>\n<\/ul>","common\/app\/components\/activities\/list-panel\/activities-action":"<div class=\"activities-actions-wrapper\">\n    <div class=\"activities-actions\" ng-if=\"!vm.pageData.options.wrapper_form\">\n        <button\n                type=\"button\"\n                class=\"button main ladda-button\"\n                ng-click=\"vm.add()\"\n                ladda=\"vm.pageData.submitting\"\n                data-spinner-color=\"#ddd\"\n        >\n            <%vm.pageData.currentActivityType.labels.buttonCreate%>\n        <\/button>\n        <button\n                type=\"button\"\n                class=\"button default\"\n                ng-click=\"vm.discard()\"\n                ng-bind=\"vm.pageData.currentActivityType.labels.buttonCancel\"\n        ><\/button>\n    <\/div>\n    <div class=\"activities-action\" ng-if=\"vm.pageData.options.wrapper_form\">\n        <div ng-repeat=\"button in vm.pageData.options.wrapper_form\" style=\"display:inline-block;\">\n            <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n        <\/div>\n    <\/div>\n    <div class='activities-validation-message' ng-if=\"vm.pageData.inputValidationErrorMessage\"\n         ng-bind=\"vm.pageData.inputValidationErrorMessage\"><\/div>\n<\/div>","common\/app\/components\/activities\/list-panel\/activities-attachments-list":"<div class=\"activities-attachments-list\"\n     ng-if=\"(vm.pageData.inputData.model.attachments && vm.pageData.inputData.model.attachments.length) || vm.pageData.options.attachmentOptions.preattached.loading\"\n     >\n    <div ng-if=\"vm.pageData.options.attachmentOptions.preattached.loading\">\n        <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"  \/>\n    <\/div>\n    <ul ng-if=\"!vm.pageData.options.attachmentOptions.preattached.loading\">\n        <li ng-repeat=\"attachment in vm.pageData.inputData.model.attachments\">\n            <i class=\"fa fa-paperclip\"><\/i>\n            <span ng-bind=\"attachment.txt_document_name\"><\/span>\n            <a ng-click=\"vm.removeAttachment(attachment)\"><i class=\"fa fa-times\"><\/i><\/a>\n        <\/li>\n    <\/ul>\n<\/div>","common\/app\/components\/activities\/list-panel\/activity-wrapper":"<div class=\"activity-wrapper\">\n    <div class=\"activity-type-icon\">\n        <i class=\"fa\" ng-class=\"vm.getIcon()\"><\/i>\n    <\/div>\n    <div class=\"activity-content-panel\">\n        <ng-transclude><\/ng-transclude>\n    <\/div>\n\n<\/div>","common\/app\/components\/activities\/activity-input-panel\/activity-main-input-panel":"<div ng-if=\"vm.options.activityTypes && !vm.options.hideActivityInput\" class=\"activities-input-section\">\n    <div>\n        <ul class='activities-type-selector' ng-if=\"vm.options.activityTypes.length >= 1\">\n            <li ng-repeat-start=\"activityType in vm.options.activityTypes\"\n                ng-if=\"activityType.type != vm.selectedActivityType.type\"\n                ng-click=\"vm.selectType(activityType)\"\n            >\n                <i class='fa fa-<%activityType.icon%>'><\/i> <%activityType.labels.title%>\n            <\/li>\n            <li ng-repeat-end\n                ng-if=\"activityType.type == vm.selectedActivityType.type\"\n                class=\"active\"\n            >\n                <i class='fa <%activityType.icon%>'><\/i> <%activityType.labels.title%>\n            <\/li>\n        <\/ul>\n    <\/div>\n    <rms-activity-input ng-if=\"vm.currentData.options\" get-model=\"vm.getModel\" options=\"vm.currentData\" reset=\"vm.reset\"><\/rms-activity-input>\n    <div class=\"activities-actions-wrapper\">\n        <div class=\"activities-actions\">\n            <button\n                    type=\"button\"\n                    class=\"button main ladda-button\"\n                    ng-click=\"vm.add()\"\n                    ladda=\"vm.submitting\"\n                    data-spinner-color=\"#ddd\"\n            >\n                <%vm.selectedActivityType.labels.buttonCreate%>\n            <\/button>\n            <button\n                    type=\"button\"\n                    class=\"button default\"\n                    ng-click=\"vm.discard()\"\n                    ng-bind=\"vm.selectedActivityType.labels.buttonCancel\"\n            ><\/button>\n        <\/div>\n        <div class='activities-validation-message' ng-if=\"vm.inputValidationErrorMessage\"\n             ng-bind=\"vm.inputValidationErrorMessage\"><\/div>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/activity-input-panel\/activity-workflow-pipeline-input":"<div class=\"activities-input-section\">\n    <rms-activity-input get-model=\"vm.getModel\" options=\"vm.currentData\" reset=\"vm.reset\"><\/rms-activity-input>\n    <div class=\"activities-actions-wrapper\">\n        <div class=\"activities-actions\">\n            <button\n                    type=\"button\"\n                    class=\"button default\"\n                    ng-click=\"vm.discard()\"\n                    ng-bind=\"vm.selectedActivityType.labels.buttonCancel\"\n            ><\/button>\n        <\/div>\n        <div class='activities-validation-message' ng-if=\"vm.inputValidationErrorMessage\"\n             ng-bind=\"vm.inputValidationErrorMessage\"><\/div>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/activity-input-panel\/activity-reply-input-panel":"<div class=\"activities-input-section\">\n    <rms-activity-input get-model=\"vm.getModel\" options=\"vm.currentData\" reset=\"vm.reset\" default-model=\"vm.defaultModel\"><\/rms-activity-input>\n    <div class=\"activities-actions-wrapper\">\n        <div class=\"activities-actions\">\n            <button\n                    type=\"button\"\n                    class=\"button main ladda-button\"\n                    ng-click=\"vm.add()\"\n                    ladda=\"vm.submitting\"\n                    data-spinner-color=\"#ddd\"\n            >\n                <%vm.selectedActivityType.labels.buttonCreate%>\n            <\/button>\n            <button\n                    type=\"button\"\n                    class=\"button default\"\n                    ng-click=\"vm.discard()\"\n                    ng-bind=\"vm.selectedActivityType.labels.buttonCancel\"\n            ><\/button>\n        <\/div>\n        <div class='activities-validation-message' ng-if=\"vm.inputValidationErrorMessage\"\n             ng-bind=\"vm.inputValidationErrorMessage\"><\/div>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/activity-input-panel\/email-box":"<div>\n    <div class=\"preview-section\" ng-show=\"!vm.preview.on\">\n        <rms-activity-input\n            reset=\"vm.reset\"\n            preview=\"vm.preview\"\n            get-model=\"vm.getModel\"\n            options=\"vm.currentData\"\n            on-discard=\"vm.onDiscard\"\n            default-model=\"vm.defaultModel\"\n            ng-if=\"vm.currentData.options\"><\/rms-activity-input>\n    <\/div>\n    <div class=\"preview-section\" ng-show=\"vm.preview.on\">\n        <div class=\"activity-email-to\">\n            <span ng-bind=\"vm.options.previewLabels.email.to\"><\/span> :\n                        <selectize\n                class=\"preview-to\"\n                ng-if=\"vm.preview.previewsList.length\"\n                options=\"vm.preview.previewsList\"\n                config=\"vm.preview.config\"\n                ng-model=\"vm.preview.selected\"><\/selectize>\n\n            <div\n                ng-if=\"vm.options.selection.selectAll\"\n                style=\"display: block;clear: both;padding-left: 30px;font-size: 11px;font-weight: 600;color: #777;\"\n            >&lt;%(vm.currentData.selection.selectAllCount - vm.preview.previewsList.length)%&gt; other(s) hidden<\/div>\n        <\/div>\n        <div class=\"activity-email-cc\" ng-if=\"vm.preview.data.cc.length\">\n            <span ng-bind=\"vm.options.previewLabels.email.cc\"><\/span> :\n            <show-emails emails=\"vm.preview.data.cc\"><\/show-emails>\n        <\/div>\n        <div class=\"activity-email-bcc\" ng-if=\"vm.preview.data.bcc.length\">\n            <span ng-bind=\"vm.options.previewLabels.email.bcc\"><\/span> :\n            <show-emails emails=\"vm.preview.data.bcc\"><\/show-emails>\n        <\/div>\n        <div class=\"activity-email-from\">\n            <span ng-bind=\"vm.options.previewLabels.email.from\"><\/span> :\n            <show-emails emails=\"vm.preview.data.from\" ng-if=\"vm.preview.data.from.length\"><\/show-emails>\n        <\/div>\n        <div class=\"activity-email-subject\">\n            <strong><span ng-bind=\"vm.preview.data.subject || '&nbsp;'\"><\/span><\/strong>\n        <\/div>\n        <div class=\"activity-email-content\">\n            <sod-iframe-preview content=\"vm.preview.data.body || ''\"><\/sod-iframe-preview>\n        <\/div>\n\n\n        <div class=\"activities-attachments-list\"\n             ng-if=\"vm.preview.data.attachments && vm.preview.data.attachments.length\">\n            <ul>\n                <li ng-repeat=\"attachment in vm.preview.data.attachments\">\n                    <i class=\"fa fa-paperclip\"><\/i>\n                    <span ng-bind=\"attachment.txt_document_name\"><\/span>\n                <\/li>\n            <\/ul>\n        <\/div>\n    <\/div>\n    <div class=\"activities-actions-wrapper\">\n        <div class=\"activities-actions\">\n            <button\n                type=\"button\"\n                class=\"button default ladda-button\"\n                ladda=\"vm.preview.executing\"\n                data-spinner-color=\"#333\"\n                data-spinner-size=\"25\"\n                ng-class=\"{ disabled: !vm.getModel().sel_email_to || vm.getModel().sel_email_to.length == 0 }\"\n                ng-disabled=\"!vm.getModel().sel_email_to || vm.getModel().sel_email_to.length == 0\"\n                ng-click=\"vm.preview.execute(vm.selectedActivityType.sodTemplates.datasource.previewEmailTemplate)\">\n                <% vm.preview.on ? vm.selectedActivityType.labels.back : vm.selectedActivityType.labels.buttonPreview %>\n            <\/button>\n            <button\n                type=\"button\"\n                class=\"button default\"\n                ng-click=\"vm.discard()\"\n                ng-if=\"!vm.preview.on\"\n                ng-bind=\"vm.selectedActivityType.labels.buttonCancel\"><\/button>\n        <\/div>\n        <div class=\"activities-validation-message\"\n             ng-if=\"vm.inputValidationErrorMessage\"\n             ng-bind=\"vm.inputValidationErrorMessage\"><\/div>\n        <div class=\"activities-actions-misc\">\n            <button\n                type=\"button\"\n                class=\"button main ladda-button right\"\n                ng-click=\"vm.add()\"\n                ladda=\"vm.submitting\"\n                data-spinner-color=\"#ddd\"\n                ng-if=\"vm.preview.on\">\n                <% vm.selectedActivityType.labels.buttonCreate %>\n            <\/button>\n                                                                                                                                                                                                                                                                                                                                                                                                                            <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/activities\/input-panel\/select-templates\/option\/email-recipient-entity-type":"<div class=\"select-dropdown-option\">\n    <h6>#name#<\/h6>\n    <div class=\"select-dropdown-option-subheader\">#email#<\/div>\n    <div class=\"select-dropdown-option-description\">#entity-type#<\/div>\n<\/div>","common\/app\/components\/activities\/input-panel\/select-templates\/item\/email-recipient-name":"<div>#name#<\/div>","common\/app\/components\/activities\/input-panel\/select-templates\/item\/email-recipient":"<div>#name# (#email#)<\/div>","common\/app\/components\/activities\/activity-input\/fields\/description":"<div class=\"activities-input-wrapper\">\n    <label ng-bind=\"vm.inputData.options.labels.inputTitle\" ng-if=\"vm.inputData.options.labels.inputTitle\"><\/label>\n    <textarea ui-tinymce=\"vm.tmceOptions\" ng-model=\"vm.model\" name=\"txt_description\"><\/textarea>\n<\/div>","common\/app\/components\/activities\/activity-input\/fields\/text":"<textarea\n    name=\"txt_description\"\n    ui-tinymce=\"tmceOptions\"\n    ng-model=\"state.model\"\n    ng-if=\"!element.options.readonly\"\n    ng-class=\"element.className\"\n><\/textarea>\n<span ng-bind=\"state.model\" class=\"readonly-text\" ng-if=\"element.options.readonly\"><\/span>","common\/app\/components\/activities\/activity-input\/fields\/timepicker":"","common\/app\/components\/activities\/activity-input\/fields\/datepicker":"<div class=\"activity-datepicker-content\">\n    <div class=\"date\">\n        <input type=\"text\"\n               ng-model=\"selected_date\"\n        \/>\n        <i class=\"fa fa-calendar\"><\/i>\n    <\/div>\n    <div class=\"time\">\n        <input type=\"text\"\n               ng-model=\"selected_time\"\n        \/>\n        <i class=\"fa fa-clock-o\"><\/i>\n    <\/div>\n<\/div>\n","common\/app\/components\/activities\/activity-input\/fields\/readonly":"<div ng-bind='model'><\/div>","common\/app\/components\/activities\/activity-input\/fields\/select":"<div class=\"selectize-wrapper no-border\">\n    <selectize config=\"vm.config\" ng-model=\"vm.modelContent\"><\/selectize>\n    <div class=\"selectize-loading-mask\" ng-if=\"vm.isLoading\">\n        <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"  \/>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/activity-input\/fields\/custom-select":"<div class=\"activity-custom-select\">\n    <label ng-bind=\"title\" ng-if=\"title\"><\/label>\n    <div class=\"selectize-wrapper\">\n        <selectize config=\"fieldConfig.config\" options='fieldConfig.ds' ng-model=\"fieldConfig.model\"><\/selectize>\n        <div class=\"selectize-loading-mask\" ng-if=\"fieldConfig.isLoading\">\n            <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"  \/>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/activity-input\/activity-add-attachment":"<div class=\"activities-add-attachments-wrapper\">\n    <button type=\"button\" class=\"button default\" ng-click=\"onAddAttachmentClick()\" ng-disabled=\"vm.pageData.options.attachmentOptions.preattached.loading\">Add Attachment<\/button>\n<\/div>","common\/app\/components\/activities\/activity-input\/types\/timestamp":"<div class=\"activities-input-types activity-timestamp-wrapper\">\n    <div>\n        <activity-field-generator model='vm.model[vm.elements.select.name]'\n                                      element=\"vm.elements.select\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n    <\/div>\n    <div class=\"activity-date\">\n        <activity-field-generator model='vm.model[vm.elements.activity_date.name]'\n                                      element=\"vm.elements.activity_date\"><\/activity-field-generator>\n    <\/div>\n<\/div>\n","common\/app\/components\/activities\/activity-input\/types\/scheduler":"<div class=\"activities-input-types activity-schedule-wrapper\">\n    <div class=\"activity-schedule-left-panel\">\n        <div class=\"activity-table\">\n            <div class='activity-table-row'>\n                <label ng-bind=\"vm.labels.eventName\"><\/label>\n                <activity-field-generator  model='vm.model[vm.elements.event_name.name]' element=\"vm.elements.event_name\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n            <\/div>\n\n            <div class='activity-table-row'>\n                <label ng-bind=\"vm.labels.startDateTime\"><\/label>\n                <div>\n                    <activity-field-generator  model='vm.model[vm.elements.start_date.name]' element=\"vm.elements.start_date\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n                    <activity-field-generator  model='vm.model[vm.elements.start_time.name]' element=\"vm.elements.start_time\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n                <\/div>\n            <\/div>\n            <div class='activity-table-row'>\n                <label ng-bind=\"vm.labels.endDateTime\"><\/label>\n                <div>\n                    <activity-field-generator  model='vm.model[vm.elements.end_date.name]' element=\"vm.elements.end_date\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n                    <activity-field-generator  model='vm.model[vm.elements.end_time.name]' element=\"vm.elements.end_time\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"activity-schedule-right-panel\">\n        <activity-field-generator  model=\"vm.model[vm.elements.invitee.name]\" element=\"vm.elements.invitee\" title=\"vm.labels.guests\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n    <\/div>\n<\/div>","common\/app\/components\/activities\/activity-input\/types\/email":"<div class=\"activities-input-types activity-email-wrapper\"\n     ng-init=\"vm.show_all_to = false\"\n     ng-class=\"{\n        'to-list-expanded':vm.show_all_to,\n        'collapsible': vm.elements.to.options.collapsible\n    }\">\n    <div class=\"activity-table\" >\n        <div ng-if=\"vm.show_all_to\" class=\"to-list-expanded-bg\" ng-click=\"vm.show_all_to = false\"><\/div>\n        <div class='activity-table-row activity-table-row-to' ng-class=\"{'has-cc': vm.show.cc, 'has-bcc': vm.show.bcc, 'expanded-to-list':vm.show_all_to}\">\n            <label ng-bind=\"vm.labels.to\"><\/label>\n            <div class=\"to-list-selected\">\n                <span><%vm.model[vm.elements.to.name].length%><\/span>\n                Recipients\n                (<!--\n                    --><a class=\"to-list-action\" ng-click=\"vm.show_all_to = true\" ng-show=\"!vm.show_all_to\">Expand<\/a><!--\n                    --><a class=\"to-list-action\" ng-click=\"vm.show_all_to = false\" ng-show=\"vm.show_all_to\">Collapse<\/a><!--\n                -->)\n            <\/div>\n            <div\n                ng-if=\"vm.inputData.selection.selectAll\"\n                style=\"display: block;clear: both;font-size: 11px;font-weight: 600;color: #777;\"\n            >\n                &lt;%(vm.inputData.selection.selectAllCount - vm.model[vm.elements.to.name].length)%&gt; other(s) hidden\n            <\/div>\n            <div class=\"to-list-selectize\">\n            <activity-field-generator\n                    model='vm.model[vm.elements.to.name]'\n                    element=\"vm.elements.to\"\n                    on-change=\"vm.onChange({name: name, value: value})\"\n            ><\/activity-field-generator>\n            <\/div>\n\n            <div class=\"showCcBcc\" ng-show=\"!vm.show_all_to\">\n                <a ng-click=\"vm.showCcBcc('cc')\" ng-if=\"!vm.show.cc\" ng-bind=\"vm.labels.cc\"><\/a>\n                <a ng-click=\"vm.showCcBcc('bcc')\" ng-if=\"!vm.show.bcc\" ng-bind=\"vm.labels.bcc\"><\/a>\n            <\/div>\n            <div class=\"collapse-to-list to-list-action\" ng-show=\"vm.show_all_to\" ng-click=\"vm.show_all_to = false\">Click here to collapse<\/div>\n        <\/div>\n        <div class='activity-table-row' ng-if=\"vm.show.cc\"  ng-class=\"{'to-list-has-expanded':vm.show_all_to}\">\n            <label ng-bind=\"vm.labels.cc\"><\/label>\n            <activity-field-generator model='vm.model[vm.elements.cc.name]' element=\"vm.elements.cc\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n        <\/div>\n        <div class='activity-table-row' ng-if=\"vm.show.bcc\">\n            <label ng-bind=\"vm.labels.bcc\"><\/label>\n            <activity-field-generator model='vm.model[vm.elements.bcc.name]' element=\"vm.elements.bcc\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n        <\/div>\n        <div class='activity-table-row'>\n            <label ng-bind=\"vm.labels.from\"><\/label>\n            <activity-field-generator model='vm.model[vm.elements.from.name]' element=\"vm.elements.from\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n        <\/div>\n        <div class='activity-table-row email-subject'>\n            <label ng-bind=\"vm.labels.subject\"><\/label>\n            <activity-field-generator model='vm.model[vm.elements.subject.name]' element=\"vm.elements.subject\" on-change=\"vm.onChange({name: name, value: value})\"><\/activity-field-generator>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/activities\/activity-input\/activity-attachment-list":"<div class=\"activities-attachments-list\"\n     ng-if=\"(vm.model.attachments && vm.model.attachments.length) || preattached.loading\" >\n    <div ng-if=\"preattached.loading\">\n        <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"  \/>\n    <\/div>\n        <ul>\n        <li ng-repeat=\"attachment in vm.model.attachments\">\n            <i class=\"fa fa-paperclip\"><\/i>\n            <span ng-bind=\"attachment.txt_document_name\"><\/span>\n            <a ng-click=\"handleRemoveAttachment(attachment)\"><i class=\"fa fa-times\"><\/i><\/a>\n        <\/li>\n    <\/ul>\n<\/div>","common\/app\/components\/activities\/activity-input\/activity-input":"<div class=\"activity-input-content\">\n    <activity-type input-data=\"vm.options\" model=\"vm.model\" on-change=\"vm.handleOnChange(name, value)\"><\/activity-type>\n    <activity-field-description preview=\"vm.preview\" on-discard=\"vm.onDiscard\" input-data=\"vm.options\" preview-model=\"vm.model\" model=\"vm.model.txtbox_description\"><\/activity-field-description>\n    <div style=\"display:none\">\n    <activity-add-attachment><\/activity-add-attachment>\n    <\/div>\n    <activity-attachment-list><\/activity-attachment-list>\n<\/div>","common\/app\/components\/billing\/purchase-orders":"<div class=\"panel bg-white p-20 border border-grey\">\n    <h2 class=\"font-bold\">Purchase Orders<\/h2>\n    <hr class=\"max-w-full mx-0\">\n    <h4>\n        <span ng-bind=\"vm.getSelectedPendingPaymentsEntity().label\" ng-if=\"vm.getSelectedPendingPaymentsEntity().label\"><\/span>\n        <span ng-if=\"vm.getSelectedPendingPaymentsEntity().count\">\n            (<% vm.getSelectedPendingPaymentsEntity().count %>)\n        <\/span>\n    <\/h4>\n    <div class=\"purchase-orders items-list bg-grey-lightest\">\n        <div\n            class=\"flex items-center py-4 border-solid border-0\"\n            ng-repeat=\"purchaseOrder in vm.purchaseOrders\"\n            ng-class=\"{'border-l-4': vm.hasPendingPaymentsForPurchaseOrder(purchaseOrder), 'border-green': vm.hasPendingPaymentsForPurchaseOrder(purchaseOrder)}\">\n            <div class=\"px-4\" ng-init=\"button = vm.options.row_item_buttons.pending_payments\">\n                <button class=\"m-2 font-bold outline-none focus:shadow-outline text-2xl\" ng-click=\"vm.handlePendingPayments(purchaseOrder)\">\n                    <i class=\"fa fa-file-text\"><\/i>\n                <\/button>\n            <\/div>\n            <div class=\"px-4\">\n                <div class=\"font-bold\" ng-bind=\"purchaseOrder.created_at\"><\/div>\n                <small>\n                    <span class=\"font-bold\">Created By<\/span>:\n                    <span ng-bind=\"purchaseOrder.created_by\"><\/span>\n                <\/small>\n            <\/div>\n            <div class=\"px-4 flex-1\">\n                <div ng-bind=\"purchaseOrder.ref_id\"><\/div>\n                <div ng-if=\"!purchaseOrder.description_template\">\n                    <small ng-repeat=\"singleDescription in purchaseOrder.description\">\n                        <span class=\"font-bold\" ng-bind=\"singleDescription.label\"><\/span>:&nbsp;\n                        <span ng-bind=\"singleDescription.value\"><\/span>\n                        <span ng-if=\"!$last\"> | <\/span>\n                    <\/small>\n                <\/div>\n                <div\n                    ng-if=\"purchaseOrder.description_template\"\n                    ng-bind-html=\"purchaseOrder.description_template | trustAsHtml\">\n                <\/div>\n            <\/div>\n            <div class=\"px-4\">\n                <div class=\"font-bold\">\n                    <span ng-bind=\"purchaseOrder.currency\"><\/span>\n                    <span ng-bind=\"purchaseOrder.amount\"><\/span>\n                <\/div>\n                <small>Amount<\/small>\n            <\/div>\n            <div class=\"px-4\">\n                <button ng-if=\"vm.options.row_item_buttons.pay_purchase_order\" class=\"bg-green p-2 px-4 text-white rounded-full font-bold outline-none focus:shadow-outline\" sod-emit-event event-name=\"vm.options.row_item_buttons.pay_purchase_order.event.click\" event-data=\"purchaseOrder\">\n                    Pay\n                <\/button>\n                <button ng-if=\"vm.options.row_item_buttons.cancel_purchase_order\" class=\"bg-red p-2 px-4 text-white rounded-full font-bold outline-none focus:shadow-outline\" sod-emit-event event-name=\"vm.options.row_item_buttons.cancel_purchase_order.event.click\" event-data=\"purchaseOrder\">\n                    <i class=\"fa fa-times\"><\/i>\n                <\/button>\n            <\/div>\n        <\/div>\n        <div ng-if=\"vm.purchaseOrders.length === 0\" class=\"no-records-wrapper flex items-center\" style=\"min-height: 320px;\">\n            <div class=\"list-filter-no-records\">\n    <div>\n        <img src=\"https:\/\/content.recruiterpal.com\/app\/assets\/images\/common\/No_Result_Empty_State.svg\" \/>\n    <\/div>\n    <h2>No Records Found<\/h2>\n    <div><\/div>\n<\/div>        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/billing\/pending-payments_items-list":"<div\n        class=\"flex items-center py-4 border-solid border-0\"\n        ng-repeat=\"singlePendingPaymentEntity in vm.pendingPaymentEntity\"\n        ng-class=\"{'border-l-4': vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity), 'border-green': vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)}\">\n    <div class=\"px-4\" ng-if=\"!vm.options.readOnly\">\n        <button\n                class=\"text-grey-darkest font-bold outline-none focus:shadow-outline text-xl\"\n                ng-if=\"singlePendingPaymentEntity.selectable && !vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\"\n                ng-click=\"vm.addPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\">\n            <i class=\"fa fa-square-o\"><\/i>\n        <\/button>\n        <button\n                class=\"text-grey-darkest font-bold outline-none focus:shadow-outline text-xl\"\n                ng-if=\"singlePendingPaymentEntity.selectable && vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\"\n                ng-click=\"vm.removePendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\">\n            <i class=\"fa fa-check-square-o\"><\/i>\n        <\/button>\n        <button\n                class=\"text-grey-darkest font-bold outline-none focus:shadow-outline text-xl\"\n                ng-if=\"!singlePendingPaymentEntity.selectable\"\n        >\n            <i class=\"fa fa-lock\"><\/i>\n        <\/button>\n    <\/div>\n    <div class=\"px-4\">\n        <div ng-class=\"singlePendingPaymentEntity.type.color\"\n             class=\"bg-green p-2 px-6 text-white font-bold rounded-full\"\n             ng-bind=\"singlePendingPaymentEntity.type.name\">\n        <\/div>\n    <\/div>\n    <div class=\"px-4\">\n        <div class=\"font-bold\" ng-bind=\"singlePendingPaymentEntity.created_at\"><\/div>\n        <small ng-bind=\"singlePendingPaymentEntity.pending_payment_ref_id\"><\/small>\n    <\/div>\n    <div class=\"px-4 flex-1\">\n        <div ng-bind=\"singlePendingPaymentEntity.title\"><\/div>\n        <div ng-if=\"!singlePendingPaymentEntity.description_template\">\n            <small ng-repeat=\"singleDescription in singlePendingPaymentEntity.description\">\n                <span class=\"font-bold\" ng-bind=\"singleDescription.label\"><\/span>:&nbsp;\n                <span ng-bind=\"singleDescription.value\"><\/span>\n                <span ng-if=\"!$last\"> | <\/span>\n            <\/small>\n        <\/div>\n        <div\n                ng-if=\"singlePendingPaymentEntity.description_template\"\n                ng-bind-html=\"singlePendingPaymentEntity.description_template | trustAsHtml\">\n        <\/div>\n    <\/div>\n    <div class=\"px-4\">\n        <div class=\"font-bold\">\n            <span ng-bind=\"singlePendingPaymentEntity.currency\"><\/span>\n            <span ng-bind=\"singlePendingPaymentEntity.amount_display\"><\/span>\n        <\/div>\n        <small>Amount<\/small>\n    <\/div>\n<\/div>","common\/app\/components\/billing\/offline-payment-methods":"<form>\n<div class=\"form-block\">\n    <div class=\"fb-settings-field\" ng-repeat=\"p_type in options.types\">\n        <div>\n            <input type=\"radio\"  name=\"offline_payment_method\" value=\"<%p_type.value%>\" ng-model=\"ppModel.payment_method\" \/>\n        <\/div>\n        <div>\n            <h6 ng-bind=\"p_type.label\"><\/h6>\n            <div ng-if=\"p_type.value === ppModel.payment_method\">\n                <p ng-bind-html=\"p_type.instructions\"><\/p>\n                <fb-form-generator fb-data=\"p_type.detail_form\" fb-model=\"ppModel.form_details[p_type.value]\"><\/fb-form-generator>\n                <br \/>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/form>","common\/app\/components\/billing\/pending-payments":"<div class=\"panel bg-white p-20 mb-20 border border-grey\">\n    <h2 class=\"font-bold\">Pending Payments<\/h2>\n    <hr class=\"max-w-full mx-0\">\n    <h4>\n        <span ng-bind=\"vm.getSelectedPendingPaymentsEntity().label\" ng-if=\"vm.getSelectedPendingPaymentsEntity().label\"><\/span>\n        <span ng-if=\"vm.getSelectedPendingPaymentsEntity().count\">\n            (<% vm.getSelectedPendingPaymentsEntity().count %>)\n        <\/span>\n    <\/h4>\n    <div class=\"pending-payments items-list bg-grey-lightest\">\n        <div\n        class=\"flex items-center py-4 border-solid border-0\"\n        ng-repeat=\"singlePendingPaymentEntity in vm.pendingPaymentEntity\"\n        ng-class=\"{'border-l-4': vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity), 'border-green': vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)}\">\n    <div class=\"px-4\" ng-if=\"!vm.options.readOnly\">\n        <button\n                class=\"text-grey-darkest font-bold outline-none focus:shadow-outline text-xl\"\n                ng-if=\"singlePendingPaymentEntity.selectable && !vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\"\n                ng-click=\"vm.addPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\">\n            <i class=\"fa fa-square-o\"><\/i>\n        <\/button>\n        <button\n                class=\"text-grey-darkest font-bold outline-none focus:shadow-outline text-xl\"\n                ng-if=\"singlePendingPaymentEntity.selectable && vm.hasPendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\"\n                ng-click=\"vm.removePendingPaymentsForPurchaseOrder(singlePendingPaymentEntity)\">\n            <i class=\"fa fa-check-square-o\"><\/i>\n        <\/button>\n        <button\n                class=\"text-grey-darkest font-bold outline-none focus:shadow-outline text-xl\"\n                ng-if=\"!singlePendingPaymentEntity.selectable\"\n        >\n            <i class=\"fa fa-lock\"><\/i>\n        <\/button>\n    <\/div>\n    <div class=\"px-4\">\n        <div ng-class=\"singlePendingPaymentEntity.type.color\"\n             class=\"bg-green p-2 px-6 text-white font-bold rounded-full\"\n             ng-bind=\"singlePendingPaymentEntity.type.name\">\n        <\/div>\n    <\/div>\n    <div class=\"px-4\">\n        <div class=\"font-bold\" ng-bind=\"singlePendingPaymentEntity.created_at\"><\/div>\n        <small ng-bind=\"singlePendingPaymentEntity.pending_payment_ref_id\"><\/small>\n    <\/div>\n    <div class=\"px-4 flex-1\">\n        <div ng-bind=\"singlePendingPaymentEntity.title\"><\/div>\n        <div ng-if=\"!singlePendingPaymentEntity.description_template\">\n            <small ng-repeat=\"singleDescription in singlePendingPaymentEntity.description\">\n                <span class=\"font-bold\" ng-bind=\"singleDescription.label\"><\/span>:&nbsp;\n                <span ng-bind=\"singleDescription.value\"><\/span>\n                <span ng-if=\"!$last\"> | <\/span>\n            <\/small>\n        <\/div>\n        <div\n                ng-if=\"singlePendingPaymentEntity.description_template\"\n                ng-bind-html=\"singlePendingPaymentEntity.description_template | trustAsHtml\">\n        <\/div>\n    <\/div>\n    <div class=\"px-4\">\n        <div class=\"font-bold\">\n            <span ng-bind=\"singlePendingPaymentEntity.currency\"><\/span>\n            <span ng-bind=\"singlePendingPaymentEntity.amount_display\"><\/span>\n        <\/div>\n        <small>Amount<\/small>\n    <\/div>\n<\/div>        <div ng-if=\"vm.pendingPaymentEntity.length === 0\" class=\"no-records-wrapper flex items-center\" style=\"min-height: 320px;\">\n            <div class=\"list-filter-no-records\">\n    <div>\n        <img src=\"https:\/\/content.recruiterpal.com\/app\/assets\/images\/common\/No_Result_Empty_State.svg\" \/>\n    <\/div>\n    <h2>No Records Found<\/h2>\n    <div><\/div>\n<\/div>        <\/div>\n    <\/div>\n    <hr class=\"max-w-full mx-0\">\n    <div class=\"flex justify-between items-stretch\">\n        <div class=\"\">\n            <h3 class=\"m-0\">\n                <span ng-if=\"vm.pendingPaymentsForPurchaseOrder.length\">\n                    <span class=\"uppercase\">Total<\/span>\n                     <span class=\"uppercase\" ng-bind=\"vm.getCurrency()\"><\/span>\n                    <span ng-bind=\"vm.getTotalPendingPaymentsForPurchaseOrder() | currency:''\"><\/span>\n                <\/span>\n                <span ng-if=\"!vm.pendingPaymentsForPurchaseOrder.length\">&nbsp;<\/span>\n            <\/h3>\n            <small>\n                <span ng-bind=\"vm.pendingPaymentsForPurchaseOrder.length || 0\"><\/span>\n                <span ng-if=\"vm.pendingPaymentsForPurchaseOrder.length <= 1\">Item selected<\/span>\n                <span ng-if=\"vm.pendingPaymentsForPurchaseOrder.length > 1\">Items selected<\/span>\n            <\/small>\n        <\/div>\n        <div class=\"\" ng-init=\"button = vm.options.submit_button\">\n            <fb-field-button element=\"button\" ng-if=\"button.type != 'link'\"><\/fb-field-button>\n<fb-field-anchor element=\"button\" ng-if=\"button.type == 'link'\"><\/fb-field-anchor>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/generic-search-select":"<div class=\"generic-search-select\">\n    <label for=\"\" ng-bind=\"vm.label\"><\/label>\n    <div class=\"search-bar\">\n        <input ng-model=\"vm.searchText\" type=\"text\" ng-change=\"vm.filterOptions()\" ng-focus=\"vm.toggleDropdown(true)\"\n               ng-blur=\"vm.toggleDropdown(false)\">\n        <div class=\"dropdown\" ng-class=\"{'active': vm.dropdownActive}\">\n            <div class=\"dropdown-option\" ng-if=\"vm.availableOptions.length === 0\">No Results<\/div>\n            <div class=\"dropdown-option\" ng-repeat=\"option in vm.availableOptions track by option.value\"\n                 ng-mousedown=\"vm.selectOption(option)\" ng-bind-html=\"option.dropdown_label | trustAsHtml\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/input-autocomplete\/common":"<div ng-click=\"optionModel.emit(optionModel)\" class=\"flex justify-between items-center\">\n    <span class=\"truncate\"><i class=\"fa fa-check\"><\/i><% optionModel.label %><\/span>\n<\/div>","common\/app\/components\/input-autocomplete\/job-title":"<div ng-click=\"optionModel.emit(optionModel)\" class=\"flex justify-between items-center\">\n    <span class=\"truncate\"><i class=\"fa fa-check\"><\/i><% optionModel.label %><\/span>\n    <span class=\"text-xs\" style=\"flex: 0 0 160px;white-space: nowrap;\" ng-if=\"optionModel.source == 2\">Powered By <span class=\"bg-teal text-white px-2 py-1\">Skills Framework<\/span><\/span>\n<\/div>\n","common\/app\/components\/input-autocomplete\/addCommon":"<div ng-class=\"{'added':optionModel.added}\">\n    <span><i class=\"fa fa-check\"><\/i><% optionModel.searchText %><\/span>\n    <span class=\"aa-suggestion-add-new\">&nbsp;-&nbsp;Add New<\/span>\n    <span class=\"aa-suggestion-add-new-existed\">&nbsp;-&nbsp;&nbsp;Already added<\/span>\n<\/div>","common\/app\/components\/list-filter\/list-grid-filter-action-bar":"<rms-list-filter-status-selection options=\"panel.data.options\"><\/rms-list-filter-status-selection>","common\/app\/components\/list-filter\/async-list-grid-filter":"<rms-list-filter options=\"vm.panelState.structure.options\"><\/rms-list-filter>\n","common\/app\/components\/list-filter\/grid-detail-panel":"<div class=\"grid-detail-panel\"\n     ng-if=\"vm.pageData.detailPanel.toggleState && vm.pageData.detailPanel.dataItem\"\n     ng-class=\"{\n        'has-footer': vm.pageData.detailPanel.showFooter\n     }\"\n>\n        <div class=\"grid-detail-header pl-3 lg:pl-8\" ng-class=\"{'always-on': vm.pageData.detailPanel.alwaysOn}\">\n        <a ng-click=\"vm.togglePanel()\" class=\"detail-panel-close\" ng-if=\"vm.pageData.gridOption.expandable\" style=\"right: 2.2rem;\"><i class=\"fa\" ng-class=\"{'fa-compress': vm.isToggled, 'fa-expand': !vm.isToggled}\"><\/i><\/a>\n        <a ng-click=\"vm.closePanel()\" class=\"detail-panel-close\" ng-class=\"{'hide-for-large': vm.pageData.detailPanel.alwaysOn }\"><i class=\"fa fa-times\"><\/i><\/a>\n        <h3 ng-bind=\"vm.pageData.detailPanel.title\" ng-if=\"!vm.pageData.detailPanel.titleCustom\"><\/h3>\n        <div class=\"grid-detail-header-custom-wrapper\" ng-class=\"{'pr-2-rem': vm.pageData.gridOption.expandable }\" ng-if=\"vm.pageData.detailPanel.titleCustom\">\n            <rms-template template=\"vm.pageData.detailPanel.titleCustom\" options=\"vm.pageData.detailPanel.header_options\" data=\"vm.pageData.detailPanel.dataItem\" refresh-content=\"vm.pageData.detailPanel.refreshHeader\"><\/rms-template>\n        <\/div>\n    <\/div>\n    <div class=\"grid-detail-content\" ng-class=\"vm.pageData.detailPanel.detailContentClass\">\n        <rms-template template=\"vm.pageData.detailPanel.template\" data=\"vm.pageData.detailPanel.dataItem\" options=\"vm.pageData.detailPanel.options\" refresh-content=\"vm.pageData.detailPanel.refresh\" action-save=\"vm.submit\"><\/rms-template>\n    <\/div>\n    <div class=\"grid-detail-footer\" ng-if=\"vm.pageData.detailPanel.showFooter\">\n        <button type=\"button\" class=\"button main\" ng-click=\"vm.save()\" ng-if=\"vm.showSubmitButton\">Save<\/button>\n        <button type=\"button\" class=\"button grid-detail-close-button\" ng-click=\"vm.closePanel()\">Close<\/button>\n    <\/div>\n<\/div>\n<div class=\"grid-detail-panel\" ng-if=\"vm.pageData.detailPanel.alwaysOn && !vm.pageData.detailPanel.dataItem && !vm.pageData.grid_refreshing\">\n    <rms-template template=\"vm.pageData.detailPanel.no_selected_template\" options=\"vm.pageData.detailPanel.no_selected_options\"><\/rms-template>\n<\/div>\n","common\/app\/components\/list-filter\/toolbar":"<div class=\"grid-toolbar\">\n    <div ng-if=\"vm.pageData.toolbar.isCustomTemplate && !vm.pageData.toolbar.hideSelectAll\"\n         class=\"select-all-wrapper flex-no-shrink\">\n        <list-filter-select-all flag=\"vm.pageData.toolbar.selection.selectAllFlag\"><\/list-filter-select-all>\n        <span ng-if=\"vm.pageData.toolbar.selection.selected.length == 0\">Select All<\/span>\n    <\/div>\n    <div class=\"search-wrapper\">\n        <div>\n            <div class=\"selected-actions\">\n                <div class=\"flex-style flex-row flex-nowrap\">\n                    <div ng-bind=\"vm.selected_count\" ng-if=\"!vm.pageData.toolbar.side_bulk_action.setting\"\n                         class=\"selected-count\"><\/div>\n                    <div class=\"selected-actions-buttons\" ng-if=\"!vm.pageData.toolbar.side_bulk_action.setting\">\n                        <fb-field-button element='selection'\n                                         ng-repeat=\"selection in vm.pageData.toolbar.selection.buttons\"><\/fb-field-button>\n                    <\/div>\n                    <sod-dropdown-button\n                        ng-if=\"!vm.pageData.toolbar.side_bulk_action.setting\"\n                        ng-repeat=\"additional in vm.pageData.toolbar.selection.additionals\"\n                        action-list=\"additional.actions\"\n                        class=\"action-settings left\"\n                        id=\"addition-button\"\n                    >\n                        <i class=\"fa\" ng-if=\"additional.icon\" ng-class=\"additional.icon\"><\/i>\n                        <%additional.label%>\n                        <i class=\"fa fa-caret-down\"><\/i>\n                    <\/sod-dropdown-button>\n                <\/div>\n            <\/div>\n            <div class=\"search-text\" ng-if=\"!vm.pageData.toolbar.hide_searchbar\">\n                <div class=\"search-text-simple\" ng-if=\"vm.pageData.toolbar.searchBarConfig.simple\">\n                    <input type=\"text\" class=\"form-control\" ng-model=\"vm.pageData.toolbar.searchText\"\n                           ng-model-options=\"{debounce: 500}\" ng-change=\"vm.refreshGrid(true)\"\n                           placeholder=\"Search by keywords, names, etc\">\n                <\/div>\n                <div class=\"search-text-selectize\" ng-if=\"!vm.pageData.toolbar.searchBarConfig.simple\">\n                    <selectize config=\"vm.pageData.toolbar.searchBarConfig\"\n                               options=\"vm.pageData.toolbar.searchBarOptions\"\n                               ng-model=\"vm.pageData.toolbar.searchData.items\"\n                               ng-change=\"vm.onSelectizeChange()\"><\/selectize>\n                    <div class=\"search-text-selectize-condition\">\n                        <sod-popover id=\"search-text-condition\" label=\"vm.selectedConditionHtml\" class=\"popover-right\"\n                                     toggle-popover=\"vm.togglePopover\">\n                            <div class=\"flex-style flex-row flex-nowrap\">\n                                <div ng-click=\"vm.selectCondition(condition)\"\n                                     class=\"search-text-selectize-condition-item\"\n                                     ng-repeat=\"condition in vm.pageData.toolbar.searchBarConfig.conditions\"\n                                     ng-class=\"{'active':condition.value == vm.selected_condition.value}\"\n                                     ng-bind=\"condition.label\"><\/div>\n                            <\/div>\n                        <\/sod-popover>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div class=\"sort-wrapper flex-no-shrink\" ng-if=\"vm.pageData.toolbar.sort\">\n                <sod-sort-dropdown get-sort=\"vm.filterBarService.getSort\" options=\"vm.pageData.toolbar.sort\"\n                                   toggle-refresh=\"vm.refreshGrid\"><\/sod-sort-dropdown>\n            <\/div>\n            <div class=\"horizontal-filter-wrapper\" ng-if=\"vm.pageData.toolbar.filter\">\n                <rms-filter-bar-standalone options=\"vm.pageData.toolbar.filter\"\n                                           get-query=\"vm.filterBarService.getFilterBarQuery\"\n                                           refresh-grid=\"vm.refreshGrid()\" refresh=\"vm.refreshFilter\"\n                                           reset-query=\"vm.resetFilter\"><\/rms-filter-bar-standalone>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"action-wrapper\"\n         ng-if=\"!!vm.pageData.toolbar.buttons.new || !!vm.pageData.toolbar.buttons.additional || !!vm.pageData.toolbar.buttons.pre_new || !!vm.pageData.toolbar.buttons.post_new\">\n        <fb-field-button element=\"pre_new\" ng-repeat=\"pre_new in vm.pageData.toolbar.buttons.pre_new\"><\/fb-field-button>\n        <fb-field-button element=\"vm.pageData.toolbar.buttons.new\"\n                         ng-if=\"vm.pageData.toolbar.buttons.new\"><\/fb-field-button>\n        <fb-field-button element=\"post_new\"\n                         ng-repeat=\"post_new in vm.pageData.toolbar.buttons.post_new\"><\/fb-field-button>\n        <!-- Ng repeat just to show the additional items, needs to be put into the drop down-\n       -->\n        \n        <sod-dropdown-button action-list=\"vm.pageData.toolbar.buttons.additional\" class=\"action-settings\"\n                             id=\"addition-button\" ng-if=\"vm.pageData.toolbar.buttons.additional\"\n                             template=\"vm.pageData.toolbar.options.button_additional.template\">\n            <i class=\"fa fa-cog\"><\/i>\n            <i class=\"fa fa-caret-down\"><\/i>\n        <\/sod-dropdown-button>\n    <\/div>\n<\/div>\n<div ng-if=\"vm.pageData.toolbar.filter\">\n    <rms-filter-bar-applied-filters identifier=\"vm.pageData.toolbar.filter.identifier\"><\/rms-filter-bar-applied-filters>\n<\/div>\n","common\/app\/components\/list-filter\/save-view-form":"<div class=\"modal fade\" ng-show=\"vm.show\">\n    <div class=\"modal-dialog <%vm.options.modalSize%> <%vm.options.modalClass%>  \">\n        <div class=\"modal-header \" ng-if=\"!vm.options.hideModalHeader\">\n            <h4 class=\"modal-title\">\n                <span ng-bind=\"vm.options.title\"><\/span>\n                <span ng-if=\"vm.options.showActionDataName && vm.dialogOptions.actionData.name\"> - <span ng-bind=\"vm.dialogOptions.actionData.name\"><\/span><\/span>\n            <\/h4>\n            <button class=\"close\"\n                    ng-click=\"vm.dismiss()\">\n                <i class=\"fa fa-times\"><\/i>\n            <\/button>\n        <\/div>\n        <div class=\"modal-content\">\n                <div class=\"form-block\">\n        <form ng-submit=\"vm.saveView()\">\n            <label ng-class=\"{ 'has-error': vm.hasError }\">\n                View Name\n                <input type=\"text\" ng-model=\"vm.name\" class=\"form-control\" \/>\n                <div class=\"error-message\" ng-if=\"vm.hasError\">Name is required<\/div>\n            <\/label>\n            <div ng-if=\"vm.shared_visibility\">\n                <input type=\"checkbox\" ng-model=\"vm.share\">\n                Share With All\n            <\/div>\n            <div>\n                <button type=\"submit\" class=\"button main\">Submit<\/button>\n                <button type=\"button\" class=\"button default\" ng-click=\"vm.dismiss()\">Cancel<\/button>\n            <\/div>\n        <\/form>\n    <\/div>\n        <\/div>\n        <div class=\"modal-footer hide\">\n                    <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/list-filter\/async-list-grid-filter-action-bar":"<rms-list-filter-status-selection options=\"vm.panelState.structure.options\"><\/rms-list-filter-status-selection>\n","common\/app\/components\/list-filter\/list-filter-filter-standalone-default":"<div class=\"row search-panel\">\n    <div class=\"row basic-search\">\n        <div class=\"large-11 medium-11 small-10 columns\">\n            <label>Search by Keywords<\/label>\n            <input type=\"text\" placeholder=\"Search by keywords, names, etc\" ng-model=\"vm.searchText\"\n                   ng-model-options=\"{ debounce: 1000 }\"\n                   ng-change=\"vm.searchTextChanged()\"\/>\n        <\/div>\n                                                        <div class=\"large-1 medium-1 small-2 columns\">\n            <div>\n                <label>&nbsp;<\/label>\n                <a class=\"button show-advance-filters\" ng-click=\"vm.onShowButtonClick()\">\n                    <i class=\"fa fa-filter\" aria-hidden=\"true\"><\/i>\n                <\/a>\n            <\/div>\n        <\/div>\n    <\/div>\n    <div class=\"row advanced-search collapse\">\n        <div class=\"large-12 columns\">\n            <div class=\"row\">\n                <div class=\"small-12 columns\">\n                    <hr\/>\n                <\/div>\n            <\/div>\n            <fb-form-generator fb-data=\"vm.filterForm\" get-model=\"vm.getFilterModel\"><\/fb-form-generator>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/list-filter\/list-filter":"<div class=\"filter-column\" ng-if=\"!vm.hideFilter\"\n     ng-class=\"{ active: (vm.pageData.sidebar_active || vm.pageData.bulk_action_active) }\">\n    <rms-list-filter-sidebar ng-if=\"vm.pageData.sidebar_active\"><\/rms-list-filter-sidebar>\n    <rms-bulk-action-sidebar\n        ng-if=\"vm.pageData.bulk_action_active && vm.options.toolbar.side_bulk_action.setting\"><\/rms-bulk-action-sidebar>\n    <rms-list-filter-sidebar-minimize\n        ng-if=\"!vm.pageData.sidebar_active && !vm.pageData.bulk_action_active\"><\/rms-list-filter-sidebar-minimize>\n<\/div>\n<div class=\"grid-column-wrapper\"\n     ng-class=\"{'detail-panel-active': vm.pageData.detailPanel.toggleState, 'has-side-filter': !vm.hideFilter, 'sidebar-active': vm.pageData.sidebar_active}\">\n    <div class=\"grid-column\" ng-if=\"!vm.pageData.entity_view\">\n        <div class=\"flex-style flex-column flex-nowrap grid-segment\">\n            <div class=\"grid-column-toolbar-flex\">\n                <rms-list-filter-toolbar ng-if=\"vm.pageData.toolbar.activated\"><\/rms-list-filter-toolbar>\n            <\/div>\n            <div class=\"grid-column-grid-flex\">\n                <div class=\"grid-content-column\">\n                    <rms-list-filter-grid><\/rms-list-filter-grid>\n                <\/div>\n\n                <div class=\"grid-detail-column\">\n                    <rms-list-filter-grid-detail-panel\n                        ng-if=\"vm.pageData.detailPanel\"><\/rms-list-filter-grid-detail-panel>\n                <\/div>\n            <\/div>\n        <\/div>\n        \n            <\/div>\n    <div class=\"grid-column entity-view-grid-column\" ng-if=\"vm.pageData.entity_view\">\n        <rms-list-filter-toolbar ng-if=\"vm.pageData.toolbar.activated\"><\/rms-list-filter-toolbar>\n        <rms-list-filter-grid><\/rms-list-filter-grid>\n        <div class=\"grid-detail-column\">\n            <rms-list-filter-grid-detail-panel ng-if=\"vm.pageData.detailPanel\"><\/rms-list-filter-grid-detail-panel>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/list-filter\/grid":"<div class=\"grid-wrapper\" ng-class=\"{'no-toolbar': !vm.pageData.toolbar}\">\n    <div kendo-grid=\"vm.pageData.grid\" k-options=\"vm.pageData.gridOption\" ng-class=\"vm.pageData.classes.grid\">\n    <\/div>\n<\/div>","common\/app\/components\/list-filter\/sidebar":"<div class=\"filter-sidebar-wrapper\">\n    <div class=\"hide-sidebar sidebar-control\" ng-click=\"vm.hideSidebar()\">\n        <i class=\"fa fa-angle-double-left\"><\/i>\n                    <\/div>\n    <div class=\"filter-view-selector form-block\" ng-if=\"vm.pageData.view_options\">\n        <selectize-object-selector options=\"vm.pageData.view_options.data\"\n                                   config=\"vm.pageData.view_options.config\"\n                                   ng-model=\"vm.pageData.view_options.selected_view\"\n                                   ng-change=\"onViewChange()\"\n        >\n\n        <\/selectize-object-selector>\n        <div class=\"filter-view-selector-details\">\n            <div class=\"result-count\"\n                 ng-bind=\"vm.pageData.filters.label.total_count | stringFormat:[(vm.pageData.grid.dataSource.total() || 0)]\"><\/div>\n            <div class=\"view-name\"\n                 ng-bind=\"vm.pageData.view_options.selected_view[vm.pageData.view_options.config.labelField || 'label'] || vm.pageData.filters.label.standard_view\"><\/div>\n        <\/div>\n    <\/div>\n    <div class=\"filter-view-wrapper\">\n        <rms-list-filter-builder><\/rms-list-filter-builder>\n    <\/div>\n    <div class=\"filter-view-control\">\n        <div class=\"filter-view-control-section\" ng-if=\"(hasAppliedFilters() || vm.pageData.filters.active_filters.view.select_id)  && vm.pageData.view_options\">\n            <h6 ng-bind=\"vm.pageData.filters.label.view_options\"><\/h6>\n            <div>\n                <ul>\n                    <li>\n                        <a ng-click=\"handleSaveNewView()\" ng-bind=\"vm.pageData.filters.label.view_create\"><\/a>\n                    <\/li>\n                    <li ng-if=\"vm.pageData.view_options.selected_view && vm.pageData.view_options.selected_view.editable\">\n                        <a ng-click=\"handleUpdateView()\" ng-bind=\"vm.pageData.filters.label.view_save\"><\/a>\n                    <\/li>\n                    <li ng-if=\"vm.pageData.view_options.selected_view && vm.pageData.view_options.selected_view.editable\">\n                        <a ng-click=\"handleDeleteView()\" ng-bind=\"vm.pageData.filters.label.view_delete\"><\/a>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n        <div class=\"filter-view-control-section\" ng-init=\"showingFilterView()\" ng-if=\"vm.pageData.filter_options\">\n                        <h6 ng-bind=\"vm.pageData.filters.label.filter_options\"><\/h6>\n            <div ng-repeat=\"filterViewOption in vm.pageData.filter_options.options\">\n                <rms-toggle ng-model=\"vm.pageData.view_options_filters[filterViewOption.name]\"\n                            ng-change=\"viewOptionsChanged()\"><%filterViewOption.label%>\n                <\/rms-toggle>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>","common\/app\/components\/list-filter\/sidebar-minimize":"<div class=\"list-filter-sidebar-minimize\">\n    <div class=\"expand-sidebar sidebar-control\" ng-click=\"vm.expandSidebar()\">\n        <i class=\"fa fa-angle-double-right\"><\/i>\n        <div class=\"has-filters-indicators\" ng-if=\"vm.hasActiveFilters()\"><i class=\"fa fa-circle\"><\/i><\/div>\n        <div class=\"filter-toggle-text\">Filters<\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/list-filter\/sidebar-bulk-action":"<div class=\"filter-sidebar-wrapper\">\n    <div class=\"hide-sidebar sidebar-control flex justify-between py-2 px-4 items-center cursor-default\">\n        <div class=\"result-count capitalize font-medium\">\n            <span  ng-if=\"vm.pageData.toolbar.selection.select_all\"  ng-bind=\"vm.bulkActions.selected_count\"><\/span>\n            <span  ng-if=\"!vm.pageData.toolbar.selection.select_all\" ng-bind=\"vm.bulkActions.selected_all_count\"><\/span>\n        <\/div>\n        <a class=\"font-medium\" ng-click=\"vm.bulkActions.hideSidebar()\"><i class=\"fa fa-angle-double-left fa-fw fa-inherit-color\"><\/i>Unselect All<\/a>\n    <\/div>\n    <div class=\"sidebar-control flex justify-between py-2 px-4 items-center cursor-default\"\n         ng-if=\"vm.bulkActions.bulk_action_buttons.length > 0 && vm.bulkActions.hasSelectAll\"\n    >\n        <a class=\"font-medium\" ng-click=\"vm.bulkActions.toggleSelectAll()\" ng-if=\"!vm.pageData.toolbar.selection.select_all\" ng-bind=\"vm.bulkActions.getSelectAllLabel()\">\n        <\/a>\n        <div ng-if=\" vm.pageData.toolbar.selection.select_all\" ng-bind=\"vm.bulkActions.getSelectAllRemarkLabel()\"><\/div>\n    <\/div>\n    <div class=\"w-full flex flex-col justify-center items-center p-4\"\n\n    >\n        <div class=\"font-medium text-lg self-start mb-2\">Bulk Actions<\/div>\n        <div class=\"pt-4\" ng-if=\"vm.bulkActions.bulk_action_buttons.length <= 0\">\n            <i class=\"fa fa-exclamation-triangle fa-fw\" aria-hidden=\"true\"><\/i> There are no bulk actions available\n        <\/div>\n            <fb-field-button element='selection' class=\"w-full\"\n                         ng-repeat=\"selection in vm.bulkActions.bulk_action_buttons\" ><\/fb-field-button>\n                            <\/div>\n    <div class=\"w-full flex flex-col justify-center items-center px-4\">\n        <a href=\"\" class=\"mb-2 font-medium\"\n           ng-click=\"vm.bulkActions.closeAndOpenFilters()\">Change Filters<\/a>\n    <\/div>\n<\/div>\n","common\/app\/components\/list-filter\/list-filter-builder":"<div class=\"filter-view\" style=\"bottom:<%vm.pageData.filterViewWrapperStyle.bottom || 0%>\">\n    <div class=\"filter-view-content\">\n        <div class=\"filter-view-content-body\">\n            <div class=\"filter-view-group filter-group-list\"\n                 ng-class=\"{\n                    'active':  (vm.pageData.filters.step === vm.constant.LIST),\n                    'completed': (vm.pageData.filters.step > vm.constant.LIST)\n                 }\">\n                <div class=\"row\"\n                     ng-if=\"(vm.hasAppliedFilters() || vm.pageData.filters.active_filters.view.select_id) && vm.pageData.view_options\">\n                    <div class=\"columns small-7\">\n                        <button type=\"button\"\n                                class=\"button expanded \"\n                                ng-class=\"{\n                                    'green': vm.pageData.view_options.selected_view.editable,\n                                    'blue': !vm.pageData.view_options.selected_view.editable\n                                }\"\n                                ng-bind=\"vm.pageData.filters.label[(vm.pageData.view_options.selected_view.editable) ? 'view_save' : 'view_save_as']\"\n                                ng-click=\"vm.saveAsView()\">\n                        <\/button>\n                    <\/div>\n                    <div class=\"columns small-5\">\n                        <button type=\"button\"\n                                class=\"button expanded default\"\n                                ng-bind=\"vm.pageData.filters.label.reset_filter_button\"\n                                ng-click=\"vm.reset()\">\n                        <\/button>\n                    <\/div>\n                <\/div>\n                <ul class=\"applied-filters\">\n                    <li>\n                        <div class=\"filter-item cursor-default\">\n                            <i class=\"fa\" ng-class=\"vm.pageData.filters.icon.all_rows\" ng-if=\"vm.pageData.filters.icon.all_rows\"><\/i>\n                            <div ng-if=\"vm.pageData.filters.active_filters.applied.length > 0\" class=\"bg-green-dark px-4 py-1 rounded-sm text-white text-bold\">\n                                <% vm.pageData.filters.active_filters.applied.length %> Filter(s) Applied\n                            <\/div>\n                            <div ng-if=\"vm.pageData.filters.active_filters.applied.length === 0\">\n                                <% vm.pageData.filters.label.all_rows %>\n                            <\/div>\n                        <\/div>\n                    <\/li>\n\n                    <li ng-repeat=\"filter in vm.pageData.filters.active_filters.applied\">\n                        <div class=\"filter-item\"\n                             ng-class=\"{'cursor-default': !vm.hasFilter(filter)}\"\n                             ng-click=\"vm.editFilter(filter)\">\n                            <a class=\"filter-item-remove\" ng-click=\"vm.removeFilter($event, filter)\"><i class=\"fa fa-times\"><\/i><\/a>\n                            <% filter | displayFilter:this %>\n                        <\/div>\n                    <\/li>\n                    <li>\n                        <div class=\"filter-add\" ng-click=\"vm.addFilter()\">\n                            <div class=\"filter-add-btn\">\n                                <i class=\"fa fa-plus\"><\/i>\n                            <\/div>\n                            <div class=\"filter-add-text\" ng-bind=\"vm.pageData.filters.label.add_filter\">\n                            <\/div>\n                        <\/div>\n                    <\/li>\n                <\/ul>\n            <\/div>\n            <div class=\"filter-view-group filter-group-property\"\n                 ng-class=\"{\n                    'active': vm.constant.PROPERTY == vm.pageData.filters.step,\n                    'completed': (vm.pageData.filters.step > vm.constant.PROPERTY)\n                }\">\n                <div class=\"filter-group-toolbar\">\n                    <div ng-click=\"vm.backToAppliedScreen()\"\n                         class=\"cursor-pointer filter-back-button\">\n                        <i class=\"fa fa-angle-left text-bold mr-half-rem\"><\/i>\n                        <%vm.pageData.filters.label.back_to_previous%>\n                    <\/div>\n                    <div class=\"select-filter-label\"\n                         ng-bind=\"vm.pageData.filters.label.select_filter_header\"><\/div>\n                    <div>\n                        <input type=\"text\"\n                               ng-model=\"vm.pageData.filters.searchFilter.label\"\n                               placeholder='<%vm.pageData.filters.label.search_filter_placeholder%>' \/>\n                    <\/div>\n                <\/div>\n                <div ng-if=\"vm.pageData.filters.loading\" class=\"filter-group-loading\">\n                    <img src=\"https:\/\/cdn.recruiterpal.com\/assets\/imgs\/loading-bubbles-rms.svg\"\/>\n                <\/div>\n                <ul>\n                    <li ng-repeat=\"filter in vm.pageData.filters.list | filter: vm.pageData.filters.searchFilter.label\">\n                        <a ng-click=\"vm.selectFilter(filter)\">\n                            <text class=\"div-table search-filter\">\n                                <text class=\"div-cell search-filter\">\n                                    <i class='fa mr-10'\n                                    ng-class=\"filter.icon\">\n                                    <\/i>\n                                <\/text>\n                                <text class=\"div-cell search-filter\">\n                                <%filter.label%>\n                                <\/text>\n                            <\/text>\n                        <\/a>\n                    <\/li>\n                <\/ul>\n            <\/div>\n            <div class=\"filter-view-group filter-group-values\"\n                 ng-class=\"{\n                    'active': vm.constant.VALUES == vm.pageData.filters.step\n                }\">\n\n                <div class=\"filter-group-toolbar\">\n                    <div ng-click=\"vm.backToStepProperties()\"\n                         class=\"cursor-pointer filter-back-button\">\n                        <i class=\"fa fa-angle-left text-bold mr-half-rem\"><\/i>\n                        <%vm.pageData.filters.label.back_to_previous%>\n                    <\/div>\n                <\/div>\n                <div class=\"filter-group-value-content\">\n                    <div class=\"filter-label\"\n                         ng-bind=\"vm.pageData.filters.current.label\"><\/div>\n                    <div class=\"filter-form form-block\">\n                        <filter-value filter=\"vm.pageData.filters.current\"><\/filter-value>\n                    <\/div>\n                    <filter-value-action><\/filter-value-action>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/list-filter\/simple-sort-bar":"<div class=\"job-list-meta \">\n    <div class=\"content-section \">\n        <div class=\"job-list-results job-list-meta-item\" ng-if=\"vm.count\">\n            Showing &lt;%vm.count%&gt; search result(s)\n        <\/div>\n        <div class=\"job-list-sort job-list-meta-item\" ng-if=\"vm.groupings\">\n            <span>Sort By:<\/span>\n            <span class=\"job-list-sort__button\">&nbsp;<i class=\"fa\" ng-class=\"'fa-sort-alpha-' + vm.currentDirection\"\n                                                         aria-hidden=\"true\"><\/i>&nbsp;<\/span>\n\n            <a href=\"#\" class=\"job-list-sort__dropdown-button\"\n               class-toggler='{ \"selector\": \".job-list-sort__dropdown\", \"classes\": [\"active\"] }'\n               toggle-off=\"vm.dropDownToggleOff\">\n                <% vm.currentGroup.label %>\n                <i class=\"fa fa-caret-down\" aria-hidden=\"true\"><\/i>\n            <\/a>\n            <ul class=\"job-list-sort__dropdown\">\n                                                                                <li ng-repeat=\"group in vm.groupings\" ng-click=\"vm.selectGroup(group)\" ng-bind=\"group.label\"><\/li>\n            <\/ul>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/filter-bar\/toolbar":"<ul class=\"rfb-toolbar-wrapper\">\n    <li><rms-filter-bar-filter-select><\/rms-filter-bar-filter-select><\/li>\n    <li><rms-filter-bar-sort><\/rms-filter-bar-sort><\/li>\n    <li><rms-filter-bar-reset><\/rms-filter-bar-reset><\/li>\n    <li><rms-filter-bar-free-text-search><\/rms-filter-bar-free-text-search><\/li>\n<\/ul>","common\/app\/components\/filter-bar\/applied-filters":"<div class=\"rfb-applied-filters-wrapper\">\n    <rms-filter-bar-applied-filter ng-repeat=\"appliedFilter in vm.state.applied_filters\" filter=\"appliedFilter\"><\/rms-filter-bar-applied-filter>\n    <div ng-if=\"vm.show_empty_state && vm.filterBarService().getState().applied_filters.length == 0\" ng-bind-html=\"vm.empty_state_message\" class=\"filter-bar-empty-state-message\"><\/div>\n<\/div>\n","common\/app\/components\/filter-bar\/wrapper-standalone":"<div class=\"rms-filter-bar-wrapper\">\n    <rms-filter-bar-toolbar><\/rms-filter-bar-toolbar>\n<\/div>","common\/app\/components\/filter-bar\/applied-filter":"<div class=\"rfb-applied-filter\" ng-class=\"vm.validateFilterClass()\">\n    <sod-popover id=\"activity-applied-filter<%vm.filter.name%>\"\n                 label=\"vm.constructQueryText()\"\n                 class=\"popover-left\"\n                 toggle-popover=\"vm.togglePopover\"\n                 on-popover-open=\"vm.onPopoverOpen()\"\n                 on-popover-close=\"vm.onPopoverClose()\"\n                 options=\"vm.filter.rules\"\n    >\n        <div class=\"rfb-applied-filter-wrapper\">\n            <div class=\" rfb-applied-filter-actions\">\n                <div class=\"row collapse\">\n                    <div class=\"columns small-6\">\n                        <button type=\"button\" class=\"button expanded main\"\n                                ng-click=\"vm.applyFilter()\">Apply<\/button>\n                    <\/div>\n                    <div class=\"columns small-6\">\n                        <button type=\"button\" class=\"button expanded default\"\n                                ng-click=\"vm.cancel()\">Cancel<\/button>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div class=\"callout alert\" ng-bind=\"vm.errorMessage\" ng-if=\"vm.errorMessage\"><\/div>\n            <filter-value-option ng-repeat=\"filterOption in vm.options\"\n                                 option=\"filterOption\"\n                                 filter=\"vm.filter\"\n                                 settings-override=\"vm.settingsOverride\">\n            <\/filter-value-option>\n        <\/div>\n    <\/sod-popover>\n<\/div>\n","common\/app\/components\/filter-bar\/selected-sort":"<div class=\"active\">{0} <i class=\"fa {1}\"><\/i><\/div>","common\/app\/components\/filter-bar\/wrapper":"<div class=\"rms-filter-bar-wrapper\">\n    <rms-filter-bar-toolbar><\/rms-filter-bar-toolbar>\n    <rms-filter-bar-applied-filters><\/rms-filter-bar-applied-filters>\n<\/div>","common\/app\/components\/filter-bar\/tools\/filter-select":"<div class=\"rfb-tools rfb-tool-filter-select\" ng-if=\"vm.showFilter\">\n    <sod-popover id=\"activity-filter-select\" label=\"vm.filterDisplayHtml\" class=\"popover-left\"\n                 toggle-popover=\"vm.togglePopover\">\n        <ul class=\"dropdown\">\n            <li ng-repeat=\"filter in vm.state.filter_fields\">\n                <a ng-bind=\"filter.label\" ng-click=\"vm.selectFilter(filter)\"><\/a>\n            <\/li>\n        <\/ul>\n    <\/sod-popover>\n<\/div>\n","common\/app\/components\/filter-bar\/tools\/free-text-search":"<div class=\"rfb-tools rfb-tool-search\"  ng-if=\"vm.showInput\">\n    <div class=\"input-group\" ng-class=\"{'has-floating-icon': vm.options.search_on_change && vm.options.use_icon}\">\n        <input class=\"input-group-field\" type=\"text\" ng-model=\"vm.state.search_text\" ng-change=\"vm.onChange()\" ng-model-options=\"vm.options.model_options\">\n        <div class=\"input-group-button\" ng-if=\"!vm.options.search_on_change\">\n            <button type=\"button\" class=\"button default\" ng-bind-html=\"vm.buttonLabel\" ng-click=\"vm.search()\"><\/button>\n        <\/div>\n        <div class=\"floating-icon\" ng-if=\"vm.options.search_on_change && vm.options.use_icon\"><i class=\"fa\" ng-class=\"vm.options.icon\"><\/i><\/div>\n    <\/div>\n<\/div>","common\/app\/components\/filter-bar\/tools\/sort":"<div class=\"rfb-tools rfb-tool-select\"  ng-if=\"vm.showSort\">\n    <sod-popover  id=\"activity-sort-select\" label=\"vm.filterDisplayHtml\" class=\"popover-left\" toggle-popover=\"vm.togglePopover\">\n        <ul class=\"dropdown\">\n            <li ng-repeat=\"sort in vm.options.sort_list\">\n                <a ng-bind-html=\"sort | selectedSort:vm.state.applied_sort:vm.options.selected_sort_template\" ng-click=\"vm.selectSort(sort)\" class=\"rfb-selected-sort\"><\/a>\n            <\/li>\n        <\/ul>\n    <\/sod-popover>\n<\/div>","common\/app\/components\/filter-bar\/tools\/reset":"<div class=\"rfb-tools rfb-tool-reset\" ng-if=\"vm.showReset\">\n    <a ng-click=\"vm.reset()\">Reset<\/a>\n<\/div>\n","common\/app\/components\/report-builder":"<div class=\"report-builder-container\" >\n    <div class=\"report-builder-config\">\n                                                        <div class=\"report-builder-content\">\n            <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\"\n                 icon=\"caret\">\n                <div class=\"click-to-hide\">\n                    <h6><i class=\"fa default\"><\/i> Report Configuration<\/h6>\n                <\/div>\n                <div class=\"detail-panel form-block\">\n                    <fb-form-generator fb-data=\"vm.options.form\" fb-model=\"vm.component_data.form\"\n                                       get-model=\"vm.getFormModel\" set-model=\"vm.setFormModel\"><\/fb-form-generator>\n                    <div ng-if=\"vm.options.validations.rules.form\"\n                         ng-init=\"vm.setFormValidation(vm.options.validations.rules.form)\"><\/div>\n                    <div ng-if=\"!vm.options.validations.rules.form\" ng-init=\"vm.clearFormValidation()\"><\/div>\n                <\/div>\n            <\/div>\n            <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\"\n                 icon=\"caret\">\n                <div class=\"click-to-hide\">\n                    <h6><i class=\"fa default\"><\/i> Report Filters<\/h6>\n                <\/div>\n                <div class=\"detail-panel form-block\">\n\n                    <div ng-if=\"vm.options.validations.rules\">\n                        <p class=\" error-text\" ng-bind-html=\"vm.options.validations.rules.filters | stringArray\"><\/p>\n                    <\/div>\n                    <rms-filter-bar options=\"vm.options.filterOptions\" get-query=\"vm.getQuery\"\n                                    refresh-grid=\"vm.refreshActivities()\" reset-query=\"vm.resetQuery\"\n                                    refresh=\"vm.refreshQuery\" set-query=\"vm.setFilterQueries\"><\/rms-filter-bar>\n                <\/div>\n            <\/div>\n            <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\"\n                 icon=\"caret\" ng-if=\"vm.component_data.schedule\">\n                <div class=\"click-to-hide\">\n                    <h6><i class=\"fa default\"><\/i> Report Schedule<\/h6>\n                <\/div>\n                <div class=\"detail-panel form-block\">\n                    <rms-schedule-picker options=\"vm.options.scheduleOptions\"\n                                         validations=\"vm.options.validations.rules.schedule\"\n                                         ng-model=\"vm.component_data.schedule\"><\/rms-schedule-picker>\n                <\/div>\n            <\/div>\n            <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\"\n                 icon=\"caret\">\n                <div class=\"click-to-hide\">\n                    <h6><i class=\"fa default\"><\/i> Report Columns<span class=\"text-red\" style=\"padding-left: 3px;\">*<\/span><\/h6>\n                <\/div>\n                <div class=\"detail-panel form-block\">\n                    <div ng-if=\"vm.options.validations.rules.columns\">\n                        <p class=\" error-text\" ng-bind-html=\"vm.options.validations.rules.columns | stringArray\"><\/p>\n                    <\/div>\n                    <div class=\"mb-20\">\n                        <rms-options-selector options=\"vm.options.columnsOptions\" ng-model=\"vm.component_data.columns\"\n                                              refresh=\"vm.refreshColumnOptions\"\n                                              readonly=\"!vm.component_data.rules.can_toggle_columns\"><\/rms-options-selector>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div sod-collapsible click-target=\".click-to-hide\" hide-target=\".detail-panel\" show-on-default=\"yes\"\n                 icon=\"caret\">\n                <div class=\"click-to-hide\">\n                    <h6><i class=\"fa default\"><\/i> Report Sort By<span class=\"text-red\" style=\"padding-left: 3px;\">*<\/span><\/h6>\n                <\/div>\n                <div class=\"detail-panel form-block\">\n                    <div ng-if=\"vm.options.validations.rules.sort\">\n                        <p class=\" error-text\" ng-bind-html=\"vm.options.validations.rules.sort | stringArray\"><\/p>\n                    <\/div>\n                    <rms-sort-selector available=\"vm.component_data.columns\" ng-model=\"vm.component_data.sort\"\n                                       options=\"vm.options.sortOptions\" available=\"vm.component_data.columns\"\n                                       readonly=\"!vm.component_data.rules.can_toggle_sort\"><\/rms-sort-selector>\n                <\/div>\n            <\/div>\n                                                                                                                    <\/div>\n\n\n            <\/div>\n    <div class=\"preview-panel-container\">\n                                                                        \n                                                                                                            <\/div>\n    <div class=\"rb-loading-mask\" ng-if=\"vm.loading\">\n        <div><i class=\"fa fa-spin fa-refresh\"><\/i> Loading...<\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/generic-toggle":"<div class=\"generic-toggle\">\n    <div class=\"toggle-selector\"\n         ng-repeat=\"state in vm.states track by $index\"\n         ng-click=\"vm.toggleSelector(state.value)\"\n    >\n          <span class=\"fa-stack toggle-icon\"\n                ng-class=\"{'active': vm.model.choice === state.value}\">\n                <i class=\"fa fa-circle-thin fa-stack-2x\"><\/i>\n                <i class=\"fa <%state.icon%> fa-stack-1x\"><\/i>\n                <\/span>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/fileupload":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question medium-12 small-12 columns\" ng-bind-html=\"vm.element.options.question|trustAsHtml\"><\/div>\n    <div class=\"fc-freetext medium-12 small-12 columns\">\n        <input type=\"file\" kendo-upload k-options=\"vm.upload_options\"\n               ng-if=\"vm.loaded\"\n               k-localization='{\n           select:\"Select...\",\n           dropFilesHere: \"Drop Files Here To Upload\",\n           headerStatusUploading: \"\",\n           headerStatusUploaded: \"\",\n       }'\n               ng-model=\"vm.model\"\n               name=\"vm.element.name\"\/>\n\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/singlechoice":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question small-12 medium-12 columns\"\n         ng-bind-html=\"vm.element.options.question|lineBreakReplacement|trustAsHtml\"><\/div>\n    <div class=\"ynq-choice small-12 medium-12 columns\">\n        <label ng-repeat=\"choice in vm.element.options.choices\" class=\"display-block\">\n            <input name=\"<%vm.element.name%>\" ng-model=\"vm.model.answer\" type=\"radio\" ng-value=\"choice.value\" ng-change='vm.onChange()'\/>\n            <span ng-bind=\"choice.label\"><\/span>\n        <\/label>\n        <div ng-show=\"vm.showTextBox()\"><textarea type=\"text\" ng-model=\"vm.model.others\"\n                                                  placeholder=\"Please provide details\"\n                                                  ng-blur=\"vm.onBlur($event)\"><\/textarea><\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/freetext":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question medium-12 small-12 columns\" ng-bind-html=\"vm.element.options.question|trustAsHtml\"><\/div>\n    <div class=\"fc-freetext medium-12 small-12 columns\">\n        <textarea name=\"<%vm.element.name%>\" ng-model=\"vm.model.answer\"><\/textarea>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/rankchoice-jobs":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question small-12 medium-12 columns\"\n         ng-bind-html=\"vm.element.options.question|lineBreakReplacement|trustAsHtml\"><\/div>\n    <div class=\"fbc-question small-12 medium-6 columns\">\n        <div>\n            <span class=\"bold\"\n                  ng-if=\"vm.element.options.settings.min_selection\">Minimum choice - <span\n                    ng-bind=\"vm.element.options.settings.min_selection\"><\/span><\/span>\n            <span class=\"bold\" ng-if=\"vm.element.options.settings.max_selection\">&nbsp; Maximum choice - <span\n                    ng-bind=\"vm.element.options.settings.max_selection\"><\/span><\/span>\n            <span ng-if=\"!(vm.element.options.settings.min_selection || vm.element.options.settings.max_selection)\">&nbsp;<\/span>\n        <\/div>\n    <\/div>\n    <div class=\"columns small-12 medium-6\">\n        <div class=\"rank-choice-item--clear-selection-container be-theme-override\" ng-class=\"{enabled: vm.model.answer.length > 0}\"\n             ng-click=\"vm.clearSelection($event)\">Clear selection\n        <\/div>\n    <\/div>\n    <div class=\"columns\">\n    <\/div>\n    <div class=\"ynq-choice small-12 medium-12 columns my-2\" ng-class=\"{'async-panel-loading': vm.isLoading}\">\n        <div class=\"rank-choice-item\" ng-repeat=\"choice in vm.choices\" ng-class=\"{selected: vm.isSelected(choice)}\">\n            <!---->\n            <div class=\"rank-choice-item--count small-1 medium-1\" ng-bind=\"vm.getRankByChoice(choice)\"\n                 ng-click=\"vm.setModel(choice, $event)\">#\n            <\/div>\n            <div class=\"rank-choice-spacer\"><\/div>\n            <!---->\n            <div ng-if=\"choice.value < 0\"\n                 class=\"small-11 medium-11 rank-choice-item--other rank-choice-item--label-container\">\n                <div class=\"rank-choice-item--label\" ng-click=\"vm.setOthersModel(choice, $event)\">\n                    <span><input id=\"<% vm.element.name + '-value-' + choice.value %>\" class=\"italic\"\n                                 ng-init=\"choice.label = ''\" ng-model=\"choice.label\"\n                                 ng-blur=\"vm.updateOthers(choice, $event)\"\n                                 placeholder=\"Others (Details required)\"><\/span>\n                <\/div>\n            <\/div><!---->\n            <div ng-if=\"!(choice.value < 0)\" class=\"small-11 medium-11 inline-block rank-choice-item--label-container\">\n                <div class=\"rank-choice-item--label\">\n                    <div class=\"rank-choice-item--company-thumbnail\" ng-click=\"vm.setModel(choice, $event)\"\n                         style=\"background-image: url('<%choice.business_profile_image%>')\">\n\n                    <\/div>\n                    <div class=\"rank-choice-item--info\" ng-click=\"vm.setModel(choice, $event)\">\n                        <div class=\"rank-choice-item--job-title\"\n                             ng-bind=\"choice.job_title\"><\/div>\n                        <div class=\"rank-choice-item--company-name\" ng-bind=\"choice.business_profile_name\"><\/div>\n                    <\/div>\n                    <div class=\"rank-choice-item--link\">\n                        <a target=\"_blank\"\n                           ng-href=\"<%choice.career_portal_apply_link%>\">View<\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n            <div style=\"width: 100%; height: 10px;\" ng-click=\"$event.preventDefault()\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/singlechoicedropdown":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question small-12 medium-12 columns\"\n         ng-bind-html=\"vm.element.options.question|lineBreakReplacement|trustAsHtml\"><\/div>\n    <div class=\"ynq-choice small-12 medium-12 columns\">\n        <selectize config=\"vm.element.options.config\" options='vm.element.options.choices' ng-model=\"vm.model.answer\" ng-change='vm.onChange()'><\/selectize>\n        <div ng-show=\"vm.showTextBox()\"><textarea type=\"text\" ng-model=\"vm.model.others\"\n                                                  placeholder=\"Please provide details\"\n                                                  ng-blur=\"vm.onBlur($event)\"><\/textarea><\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/yesno":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question small-12 medium-12 columns\"\n         ng-bind-html=\"vm.element.options.question|lineBreakReplacement|trustAsHtml\"><\/div>\n    <div class=\"ynq-choice small-12 medium-12 columns\">\n        <label ng-repeat=\"choice in vm.element.options.choices\">\n            <input name=\"<%vm.element.name%>\" ng-model=\"vm.model.answer\" type=\"radio\" value=\"<%choice.value%>\"\/>\n            <span ng-bind=\"choice.label\"><\/span>\n        <\/label>\n        <div ng-show=\"vm.showTextBox()\"><textarea type=\"text\" ng-model=\"vm.model.others\"\n                                                  placeholder=\"Please provide details\"\n                                                  ng-blur=\"vm.onBlur($event)\"><\/textarea><\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/dropdown":"<div class=\"settings-select-container \">\n    <div ng-bind-html=\"vm.element.options.question|trustAsHtml\"><\/div>\n    <selectize config=\"vm.config\" options='vm.ds' ng-model=\"vm.model\"><\/selectize>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/rankchoice":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question small-12 medium-12 columns\"\n         ng-bind-html=\"vm.element.options.question|lineBreakReplacement|trustAsHtml\"><\/div>\n    <div class=\"fbc-question small-12 medium-6 columns\">\n        <div>\n            <span class=\"bold\"\n                  ng-if=\"vm.element.options.settings.min_selection\">Minimum choice - <span\n                    ng-bind=\"vm.element.options.settings.min_selection\"><\/span><\/span>\n            <span class=\"bold\" ng-if=\"vm.element.options.settings.max_selection\">&nbsp; Maximum choice - <span\n                    ng-bind=\"vm.element.options.settings.max_selection\"><\/span><\/span>\n            <span ng-if=\"!(vm.element.options.settings.min_selection || vm.element.options.settings.max_selection)\">&nbsp;<\/span>\n        <\/div>\n    <\/div>\n    <div class=\"columns small-12 medium-6\">\n        <div class=\"rank-choice-item--clear-selection-container be-theme-override\" ng-class=\"{enabled: vm.model.answer.length > 0}\"\n             ng-click=\"vm.clearSelection($event)\">Clear selection\n        <\/div>\n    <\/div>\n    <div class=\"columns\">\n        &nbsp;\n    <\/div>\n    <div class=\"ynq-choice small-12 medium-12 columns mb-2\">\n        <div class=\"rank-choice-item\" ng-repeat=\"choice in vm.choices\" ng-class=\"{selected: vm.isSelected(choice)}\"><!--\n        -->\n            <div class=\"rank-choice-item--count small-1 medium-1\" ng-bind=\"vm.getRankByChoice(choice)\"\n                 ng-click=\"vm.setModel(choice, $event)\">#\n            <\/div><!--\n            -->\n            <div class=\"rank-choice-spacer\"><\/div>\n            <div ng-if=\"choice.value < 0\"\n                 class=\"small-11 medium-11 rank-choice-item--other rank-choice-item--label-container\">\n                <div class=\"rank-choice-item--label\" ng-click=\"vm.setOthersModel(choice, $event)\">\n                    <span><input id=\"<% vm.element.name + '-value-' + choice.value %>\" class=\"italic\"\n                                 ng-init=\"choice.label = ''\" ng-model=\"choice.label\"\n                                 ng-blur=\"vm.updateOthers(choice, $event)\"\n                                 placeholder=\"Others (Details required)\"><\/span>\n                <\/div>\n            <\/div>\n            <!--\n             -->\n            <div ng-if=\"choice.value >= 0\" class=\"small-11 medium-11 inline-block rank-choice-item--label-container\"\n                 ng-click=\"vm.setModel(choice, $event)\">\n                <div class=\"rank-choice-item--label\"><span ng-bind=\"choice.label\"><\/span><\/div>\n            <\/div>\n            <div style=\"width: 100%; height: 10px;\" ng-click=\"$event.preventDefault()\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/url":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question medium-12 small-12 columns\" ng-bind-html=\"vm.element.options.question|trustAsHtml\"><\/div>\n    <div class=\"fc-freetext medium-12 small-12 columns\">\n        <input type=\"text\" name=\"<%vm.element.name%>\" ng-model=\"vm.model.answer\"\/>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/multichoice":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"fbc-question small-12 medium-12 columns\"\n         ng-bind-html=\"vm.element.options.question|lineBreakReplacement|trustAsHtml\"><\/div>\n    <div class=\"ynq-choice small-12 medium-12 columns\">\n        <label ng-repeat=\"choice in vm.element.options.choices\" class=\"display-block\">\n            <input name=\"<%vm.element.name%>[]\" type=\"checkbox\" ng-value=\"choice.value\" ng-model=\"choice.selected\"\n            ng-change=\"vm.setModel()\" ng-disabled=\"!vm.selectable && !choice.selected\"\/>\n            <span ng-bind=\"choice.label\"><\/span>\n        <\/label>\n        <div ng-show=\"vm.showTextBox()\"><textarea type=\"text\" ng-model=\"vm.model.others\"\n                                                  placeholder=\"Please provide details\"\n                                                  ng-blur=\"vm.onBlur($event)\"><\/textarea><\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/form\/question-set\/column\/checkbox":"<div class=\"row up-fields up-fields-inline\">\n    <div class=\"medium-12 small-12 columns\">\n        <div class=\"fbc-checkbox\">\n            <input type=\"checkbox\" ng-model=\"vm.model.answer\"\n            \/>\n            <div ng-bind-html=\"vm.element.options.question|trustAsHtml\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/ranking-candidates":"<div class=\"row rank-cadidate-panel-content\">\n    <div ng-if=\"apr_ctrl.unrank_is_empty\" class=\"no-records-wrapper flex items-center\">\n        <div class=\"list-filter-no-records\">\n    <div>\n        <img src=\"https:\/\/content.recruiterpal.com\/app\/assets\/images\/common\/No_Result_Empty_State.svg\" \/>\n    <\/div>\n    <h2>No Records Found<\/h2>\n    <div><\/div>\n<\/div>    <\/div>\n    <div ng-if=\"true\">\n        <div class=\"drop small-6 columns split left\">\n            <ul kendo-sortable\n                id=\"sortableLeft\"\n                k-options=\"sortUnRankOptions\"\n                k-on-end=\"endLeftHandler(kendoEvent)\"\n                k-placeholder=\"placeholder\"\n                k-hint=\"hint\"\n                ng-model=\"apr_ctrl.unrank_list\"\n                >\n                <li id=\"<% dataItem.id %>\" ng-repeat=\"dataItem in apr_ctrl.unrank_list\"\n                    class=\"flex mb-4 text-small bg-white p-4 rounded-md shadow-md rank-draggable\">\n                    <div class=\"flex-list-template-row-item item-content\">\n                        <div class=\"centered-left\">\n                            <span style=\"display: none;\"\n                                class=\"item-rank-number\"><%(\"00\" + dataItem.ranking).slice(-2)%><\/span>\n                        <\/div>\n                        <div class=\"flex-list-template-row-item__thumbnail flex-list-template-row-item__thumbnail--xl\"\n                            style=\"background-image:url('<% dataItem.thumbnail %>');\">\n                        <\/div>\n                        <div class=\"flex flex-1 flex-direction__column flex-justify-content__space-between\">\n                            <div class=\"flex-list-template-row-item\">\n                                <div>\n                                    <a>\n                                        <div class=\"item-candidate-name m-0\"\n                                            ng-bind=\"dataItem.full_name | limitToEllipsis:36\"><\/div>\n                                    <\/a>\n                                <\/div>\n                            <\/div>\n                            <div class=\"flex-list-template-row-item\">\n                                <div class=\"flex-list-template-row-item__meta--horizontal\" style=\"flex: 1 0 auto\">\n                                    <div class=\"flex-list-template-row-item__meta--horizontal-labels text-right\">\n                                        <div class=\"flex child-pad--extra-small items-center\">\n                                            <div class=\"child-pad__item\">\n                                                <div\n                                                    class=\"w-5 h-5 rounded-full bg-<%dataItem.pipeline_status.color%> border-<%dataItem.pipeline_secondary_status.color%> border-solid border-3\">\n                                                <\/div>\n                                            <\/div>\n                                            <div class=\"child-pad__item\">\n                                                <span class=\"text-bold text-grey-dark\"><%dataItem.pipeline_status.name%>\n                                                    | <%dataItem.pipeline_secondary_status.name%><\/span>\n                                            <\/div>\n                                        <\/div>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"items-center float-right\">\n                                    <span class=\"text-bold text-grey-dark\"><i\n                                            class=\"fa fa-ellipsis-v fa-2x text-muted\"><\/i><\/span>\n                                <\/div>\n                            <\/div>\n                            <div class=\"flex-list-template-row-item\">\n                                <div class=\"item-contact\">\n                                    <span>\n                                        <i class=\"fa fa-phone\"><\/i>\n                                        <%dataItem.full_contact_number%>\n                                    <\/span>\n                                    <span>\n                                        <i class=\"fa fa-envelope\"><\/i>\n                                        <%dataItem.email_address%>\n                                    <\/span>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/li>\n            <\/ul>\n        <\/div>\n\n        <div class=\"drop small-6 columns split right\">\n            <div class=\"item-actions\">\n                <div class=\"text-bold\">\n                    <a class=\"buttons\" ng-class=\"{'disabled': apr_ctrl.ranked_list.length == 0}\"\n                        ng-click=\"apr_ctrl.clear_ranked_list()\">\n                        Clear All\n                    <\/a>\n                <\/div>\n            <\/div>\n            <div ng-if=\"true\">\n                <div ng-if=\"apr_ctrl.ranked_list.length == 0 && !apr_ctrl.loading\" class=\"empty_ranked text-bold text-lg text-muted\">\n                    <div>Drag and drop the candidates here in order of rank<\/div>\n                <\/div>\n                <ul kendo-sortable\n                    id=\"sortableRight\"\n                    k-options=\"sortRankedOptions\"\n                    k-on-end=\"endRightHandler(kendoEvent)\"\n                    k-placeholder=\"placeholder\"\n                    k-hint=\"hint\"\n                    ng-model=\"apr_ctrl.ranked_list\"\n                    >\n                    <li id=\"<% dataItem.id %>\" ng-repeat=\"dataItem in apr_ctrl.ranked_list track by $index\"\n                        class=\"flex mb-4 text-small bg-white p-4 rounded-md shadow-md rank-draggable\">\n                        <div class=\"flex-list-template-row-item item-content\">\n                            <div class=\"centered-left\">\n                                <span style=\"display: none;\"\n                                    class=\"item-rank-number\"><%(\"00\" + dataItem.ranking).slice(-2)%><\/span>\n                            <\/div>\n                            <div class=\"flex-list-template-row-item__thumbnail flex-list-template-row-item__thumbnail--xl\"\n                                style=\"background-image:url('<% dataItem.thumbnail %>');\">\n                            <\/div>\n                            <div class=\"flex flex-1 flex-direction__column flex-justify-content__space-between\">\n                                <div class=\"flex-list-template-row-item\">\n                                    <div>\n                                        <a>\n                                            <div class=\"item-candidate-name m-0\"\n                                                ng-bind=\"dataItem.full_name | limitToEllipsis:36\"><\/div>\n                                        <\/a>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"flex-list-template-row-item\">\n                                    <div class=\"flex-list-template-row-item__meta--horizontal\" style=\"flex: 1 0 auto\">\n                                        <div class=\"flex-list-template-row-item__meta--horizontal-labels text-right\">\n                                            <div class=\"flex child-pad--extra-small items-center\">\n                                                <div class=\"child-pad__item\">\n                                                    <div\n                                                        class=\"w-5 h-5 rounded-full bg-<%dataItem.pipeline_status.color%> border-<%dataItem.pipeline_secondary_status.color%> border-solid border-3\">\n                                                    <\/div>\n                                                <\/div>\n                                                <div class=\"child-pad__item\">\n                                                    <span\n                                                        class=\"text-bold text-grey-dark\"><%dataItem.pipeline_status.name%>\n                                                        | <%dataItem.pipeline_secondary_status.name%><\/span>\n                                                <\/div>\n                                            <\/div>\n                                        <\/div>\n                                    <\/div>\n                                    <div class=\"items-center float-right\">\n                                        <span class=\"text-bold text-grey-dark\"><i\n                                                class=\"fa fa-ellipsis-v fa-2x text-muted\"><\/i><\/span>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"flex-list-template-row-item\">\n                                    <div class=\"item-contact\">\n                                        <span>\n                                            <i class=\"fa fa-phone\"><\/i>\n                                            <%dataItem.full_contact_number%>\n                                        <\/span>\n                                        <span>\n                                            <i class=\"fa fa-envelope\"><\/i>\n                                            <%dataItem.email_address%>\n                                        <\/span>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/div>\n","common\/app\/components\/datatable-toggle-manager":"<div class=\"datatable-toggle-manager\">\n    <div class=\"user-selection\">\n        <rms-generic-multi-select options=\"vm.y\" ng-model=\"vm.columns\"\n                                  on-change=\"vm.updateY\" label=\"vm.keyY\"><\/rms-generic-multi-select>\n        <rms-generic-search-select options=\"vm.x\" ng-model=\"vm.currentX\" label=\"vm.keyX\"\n                                   on-change=\"vm.addX\"><\/rms-generic-search-select>\n    <\/div>\n    <hr>\n    <div class=\"datatable-toggle-users\">\n        <div class=\"legend\" ng-if=\"vm.legend\">\n            <div ng-repeat=\"legend in vm.legend\">\n             <span class=\"fa-stack toggle-icon\">\n             <i class=\"fa fa-circle-thin fa-stack-2x\"><\/i>\n             <i class=\"fa <%legend.icon%> fa-stack-1x\"><\/i>\n             <\/span>&nbsp;<%legend.name%>\n            <\/div>\n        <\/div>\n        <table class=\"datatable-toggle-table\" ng-class=\"{'error': vm.hasError()}\">\n            <tr>\n                <th ng-bind=\"vm.keyX\"><\/th>\n                <th ng-repeat=\"column in vm.columns\" ng-bind-html=\"column.label | trustAsHtml\"><\/th>\n            <\/tr>\n            <tr ng-repeat=\"selection in vm.selected track by $index\" ng-init=\"$selectedIndex = $index\">\n                <td style=\"min-width:200px;\"><span class=\"remove-x\" ng-click=\"vm.removeX(selection.value)\"><i class=\"fa fa-times\"><\/i><\/span>\n                    <%selection.label%>\n                    <div ng-bind=\"selection.email\" style=\"\n                        font-size: 11px; color:#999;\n\/*                            *\/                                white-space: nowrap;\n                                overflow: hidden;\n                                text-overflow: ellipsis;\n<!--                            -->                    \"><\/div>\n                <\/td>\n                <td ng-repeat=\"column in vm.columns track by $index\">\n                    <rms-generic-toggle options=\"column.toggle_options\"\n                                        data=\"column\"\n                                        ng-model=\"vm.selected[$selectedIndex].y[vm.getYIndex(vm.selected[$selectedIndex], column)]\"><\/rms-generic-toggle>\n                <\/td>\n            <\/tr>\n            <tr ng-if=\"vm.selected.length === 0\">\n                <td colspan=\"<%vm.columns.length + 1%>\" class=\"text-center\">\n                    No users added.\n                <\/td>\n            <\/tr>\n        <\/table>\n        <span class=\"error-msg\" ng-if=\"vm.hasError()\"><%vm.errorMessage()%><\/span>\n    <\/div>\n    <hr>\n    <div class=\"datatable-toggle-buttons\">\n                                <button ng-click=\"vm.resetTable()\">\n            Reset\n        <\/button>\n            <\/div>\n<\/div>\n"}