@if (!student()) {
Select a student
} @else { @if (showGoalModal()) { } @if (showEditBenchmarkModal()) { } @if (showEditEventModal()) { } @if (showDeleteConfirm()) { } @if (showDeleteBenchmarkConfirm() && deletingBenchmark()) { } @if (showDeleteEventConfirm() && deletingEvent()) { } @if (showDeleteStudentConfirm()) { }

{{ student()!.identifier }}

IEP {{ formatDate(student()!.nextIepDate) }}
@for (g of goals(); track g.goalId) { }
@if (selectedGoal()) {
{{ selectedGoal()!.category }} Goal @if (selectedGoal()!.targetCompletionDate) { Due {{ formatDate(selectedGoal()!.targetCompletionDate) }} }

{{ selectedGoal()!.description }}

@if (activeTab() === 'benchmarks') {
@for (b of goalBenchmarks(); track b.benchmarkId) {
{{ b.shortName || b.benchmark }}

{{ b.benchmark }}

}
} @if (activeTab() === 'progress') {
@for (ev of goalProgressEvents(); track ev.progressEventId) {
{{ formatDate(ev.createdAt) }}

{{ ev.content }}

@if (getBenchmarksForEvent(ev.progressEventId).length > 0) {
@for (b of getBenchmarksForEvent(ev.progressEventId); track b.benchmarkId) { {{ b.shortName || b.benchmark }} }
}
}
}
} @else {
Add a goal to get started
} }