@if (loading()) {

Loading profile...

} @else if (user()) {
{{ user().name?.charAt(0)?.toUpperCase() }}

{{ user().name }}

mail {{ user().email }}

@if (user().phoneNumber) {

call {{ user().phoneNumber }}

}

Member since {{ user().createdAt | date:'mediumDate' }}

@if (user().resume) { } @else {

No resume uploaded

}

Topics of Interest

@if (isSavingTopics()) { Saving... }

Define your preferred topics to help admins assign relevant quizzes based on your comfort level.

@for (topic of topics(); track $index) {
{{ topic.topic }} {{ topic.comfortLevel }}%
} @if (topics().length === 0) {

You haven't added any topics yet.

}
{{ newTopicComfort() }}%

Test History

@if (submissions().length === 0) {
assignment

No test history yet

Take a quiz to see your test history here

} @else {
@for (sub of submissions(); track sub._id) {
quiz

{{ sub.quizId?.title }}

{{ sub.submittedAt | date:'medium' }} · {{ sub.timeTaken ? (sub.timeTaken + 's') : '—' }}

Submitted
}
}
}
@if (isEditingProfile()) { }