@model BookQuery
@using Yavsc.Models.Google.Messaging
@{
ViewData["Title"] = SR["Book "+Model.PerformerProfile.ActivityCode];
}
@section header{
@{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); }
}
@section scripts{
}
@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"]
}
}
}