Administration

@if (error()) {

{{ error() }}

}
@if (activeTab() === 'programs') {
@if (programs().length === 0) {

No programs yet. Create your first program to get started.

} @else {
@for (program of programs(); track program.programId) {
{{ program.name }}
@if (program.description) {
{{ program.description }}
}
}
}
} @if (activeTab() === 'users') {
@if (users().length === 0) {

No users yet.

} @else {
@for (user of users(); track user.userId + user.programId) {
{{ user.name }}
{{ user.email }} · {{ user.roleName }} · {{ user.programName }}
}
}
}

Database

@if (backupSuccess()) { {{ backupSuccess() }} }
@if (showProgramModal()) { } @if (showUserModal()) { }