@if (student.studyGroup) {
📚 Group: {{ student.studyGroup.name }}
}
@if (student.account) {
👤 Account: {{ student.account.account_name }}
}
@if (student.address) {
📍 City: {{ student.address.city }}
}
@if (student.teamList && student.teamList.length > 0) {
👥 Teams:
@for (team of student.teamList; track team.id) {
{{ team.teamName }}
}
}