@model Application @{ ViewData["Title"] = "Details"; }

@Model.Role bei @Model.Company

Überblick

Status
@Model.Status.GetDisplayName()
Beworben am
@Model.AppliedOn.ToString("dd.MM.yyyy")
Quelle
@(string.IsNullOrWhiteSpace(Model.Source) ? "-" : Model.Source)
Zuletzt aktualisiert
@Model.UpdatedAt.ToLocalTime().ToString("dd.MM.yyyy HH:mm")

Notizen

@if (string.IsNullOrWhiteSpace(Model.Notes)) {

Keine Notizen hinterlegt.

} else {

@Model.Notes

}

Ansprechpartner

@if (Model.Contact == null || (string.IsNullOrWhiteSpace(Model.Contact.FullName) && string.IsNullOrWhiteSpace(Model.Contact.Email) && string.IsNullOrWhiteSpace(Model.Contact.Phone))) {

Kein Ansprechpartner hinterlegt.

} else {
@if (!string.IsNullOrWhiteSpace(Model.Contact.FullName)) {
Name
@Model.Contact.FullName
} @if (!string.IsNullOrWhiteSpace(Model.Contact.Email)) {
E-Mail
@Model.Contact.Email
} @if (!string.IsNullOrWhiteSpace(Model.Contact.Phone)) {
Telefon
@Model.Contact.Phone
}
}