@if (error()) {
error {{ error() }}
} @if (success()) {
check_circle {{ success() }}
}

Create New Group

group_add

Your Groups

@if (loadingGroups()) {
} @else if (groups().length === 0) {
group_off

No groups available

Create your first grouping tier up above

} @else {
@for (group of groups(); track group) {
@if (editingGroup() === group) { } @else {

workspaces {{ group }}

{{ getStudentsInGroup(group).length }} Members }
@if (editingGroup() === group) { } @else { }
@if (getStudentsInGroup(group).length === 0) {
No candidates found in {{group}}
} @for (student of getStudentsInGroup(group); track student._id) {
{{ student.name.charAt(0).toUpperCase() }}
{{ student.name }}
}
}
}