OT&E Status Check

@if(registrarId() === null) {

Missing registrarId param

} @else if(isOte()) { @if (oteStatusResponse().length) {

Status: {{ oteStatusUnfinished().length ? "Unfinished" : "Completed" }}

}
@if(oteStatusCompleted().length) {

Completed

@for (entry of oteStatusCompleted(); track entry) {
check_box{{ entry.description }}
}
} @if(oteStatusUnfinished().length) {

Unfinished

@for (entry of oteStatusUnfinished(); track entry) {
check_box_outline_blank{{ entry.description }}
}
}
} @else {

Registrar {{ registrarId() }} is not an OT&E registrar

}