@model HairCutQuery @{ ViewData["Title"] = SR["Command confirmation"]+" "+ViewBag.Activity.Name; }

@ViewData["Title"]

@SR["Your book query"]


Votre star de la coiffure
@Html.DisplayFor(m=>m.PerformerProfile)
@Html.DisplayNameFor(m=>m.Prestation)
@Html.DisplayFor(m=>m.Prestation)
@Html.DisplayNameFor(m=>m.AdditionalInfo)
@if (string.IsNullOrWhiteSpace(Model.AdditionalInfo)) { Aucune information complémentaire n'a été saisie. } @Html.DisplayFor(m=>m.AdditionalInfo)
Addition minimale (Compter des frais supplémentaires en cas de longs déplacements, ou des majorations en cas de weekend et jour férie)
@ViewBag.Addition
Date de la prestation
@if (Model.EventDate == null) {

Pas de date convenue ...

} else { @Html.DisplayFor(m => m.EventDate) }
@Html.DisplayNameFor(m => m.Location)
@if (Model.Location == null) {

Pas de lieu convenu ...

} else { @Html.DisplayFor(m => m.Location) }
Motification
@if (ViewBag.GooglePayload !=null) { @if (ViewBag.GooglePayload.success>0) {

@SR["GCM Notifications sent"]

} else { if (ViewBag.GooglePayload.failure>0) {
@SR["GCM Notification sending failed"]
} else {
@SR["E-mail sent"]
} } } else {
@SR["E-mail sent"]
}