🛰 Application Details

@if (isApplicationDetailsLoading) {

Loading application details...

} @else if (hasApplicationData) {
@if (currentApplication().profileImage) {
}

{{ currentApplication().fullName }}

person {{ currentApplication().age }} years old
location_on {{ currentApplication().cityOrRegion }}
@if (currentApplication().email) {
email {{ currentApplication().email }}
} @if (currentApplication().phoneNumber) {
phone {{ currentApplication().phoneNumber }}
}
@if (getHobbiesArray().length > 0) {

favorite Hobbies

@for (hobby of getHobbiesArray(); track hobby) { {{ hobby }} }
} @if (currentApplication().justification) {

rocket_launch Journey Justification?

{{ currentApplication().justification }}

} @if (currentApplication().createdAt) {

calendar_today Application Date

{{ formatDate(currentApplication().createdAt) }}

}
@if (canEdit()) { } @else {

You can edit your application only during 3 days

}
View Raw Data
{{ currentApplication() | json }}
} @else {
inbox

No application data available

}