@model RdvQuery @using Yavsc.Models.Google.Messaging @{ ViewData["Title"] = SR["Command confirmation"]+" "+ViewBag.Activity.Name; }

@ViewData["Title"]

@SR["Your book query"]


: @Html.DisplayFor(m => m.EventDate)
: @Html.DisplayFor(m => m.Location)
@if (ViewBag.GooglePayload !=null) { @if (ViewBag.GooglePayload.success>0) {

@SR["GCM Notifications sent"]

} else { if (ViewBag.GooglePayload.failure>0) {

@SR["GCM Notification sending failed"]

@Newtonsoft.Json.JsonConvert.SerializeObject(ViewBag.GooglePayload)
} } } @if (ViewBag.EmailSent!=null) { if (ViewBag.EmailSent.Sent) {

@String.Format(SR["EmailSentToPerformer"],User.GetUserName())

} else { var sent = ViewBag.EmailSent;

Une erreur est survenue à lenvoi de l'e-mail au préstataire ...

Mail: @sent.EMail; MsgId: @sent.MessageId; Sent: @sent.Sent; Error: @sent.ErrorMessage; } }