{{ "Quiz settings for this employee:" }}
-
{{ "Require minimum score to pass" }}
-
{{ "Minimum passing score:" }} {{ item.quiz_settings.minScoreVal }}%
mdi-minus
mdi-plus
-
{{ "Retries before forced to move on" }}
{{ "Submit Quiz Settings" }}
{{ "Employee settings:" }}
-
{{ "Send password reset" || $t("employer_dashboard.password_reset") }}
-
-
-
-
{{ "Hide user" }}
-
{{ "Show user" }}
-
{{
item.status == "Paused" || item.status == "Inactive"
? $t("employer_dashboard.activate_user")
: $t("employer_dashboard.deactivate_user")
}}
-
{
x.selected = false;
return x;
})
)
"
@user-updated="updateUser"
:user="item"
:teamContacts="teamContacts"
/>
{{ $t("employer_dashboard.attempt") }}
{{ item.root_progress.attempt + 2 - i }}
{{ $t("employer_dashboard.current_status") }}
{{ item.status === "Inactive" ? "Inactive" : "Active" }}
{{ $t("employer_dashboard.last_activity") }}
{{
item.root_progress.last_completed_attempts &&
item.root_progress.last_completed_attempts[
item.root_progress.attempt - tabs[item.id]
]
? item.root_progress.last_completed_attempts[
item.root_progress.attempt - tabs[item.id]
]
: ""
}}
{{ "Claim number" }}
{{ item.claim_number }}
{{ $t("employer_dashboard.pathway_progress") }}
{{
item.attempts_progress[
item.root_progress.attempt - tabs[item.id]
]
? item.attempts_progress[
item.root_progress.attempt - tabs[item.id]
].completed_percentage
: ""
}}
{{
category[item.root_progress.attempt - tabs[item.id]]
.category_name
}}
{{ $t("Video Courses") }}
{{ video_course.course_name }}
{{
getVideoCourseStatus(
video_course,
item.root_progress.attempt - tabs[item.id]
)
}}
{{ $t("employer_dashboard.download") }}
{{ $t("employer_dashboard.total_active_time") }}
{{
item.root_progress.sessions_total
? formatSeconds(
item.root_progress.sessions_total[
item.root_progress.attempt - tabs[item.id]
] * 10
)
: "00:00:00"
}}
|