* 'vnext' of https://github.com/pazof/yavsc: (38 commits) fixe le premier démarrage Corrige le mot de passe perdu d'un utilisateur au nom contenant des espaces traductions fixe la reccupération du mot de passe refabrique: MEP index blogs Specialized the book query notification Updated the Licence validity cleaned up log warnings label event date cleans the code Adds support for SIREN exceptions to validation from the external provider layout trads refactoring refactoring Google maps: a map image implements an AccessDenied page A better layout ... # Conflicts: # Yavsc.Api/project.lock.json # Yavsc.Client/Yavsc.Client.csproj # Yavsc.Client/packages.config # sendmsg/Program.cs
31 lines
880 B
Plaintext
31 lines
880 B
Plaintext
@model BookQuery
|
|
@using Yavsc.Models.Google.Messaging
|
|
@{
|
|
ViewData["Title"] = SR["Command confirmation"]+" "+SR[Model.PerformerProfile.ActivityCode];
|
|
}
|
|
<h2>@ViewData["Title"]</h2>
|
|
<div class="form-horizontal">
|
|
<h4>@SR["Your book query"]</h4>
|
|
<hr />
|
|
<label for="EventDate">@SR["Event date"]</label>: @Html.DisplayFor(m => m.EventDate)
|
|
<br/>
|
|
|
|
<label for="Location">@SR["Location"]</label>: @Html.DisplayFor(m => m.Location)
|
|
<br/>
|
|
|
|
@if (ViewBag.GooglePayload !=null)
|
|
{
|
|
@if (ViewBag.GooglePayload.success>0) {
|
|
<h4>@SR["GCM Notifications sent"]</h4>
|
|
}
|
|
else {
|
|
if (ViewBag.GooglePayload.failure>0)
|
|
{
|
|
<h4>@SR["GCM Notification sending failed"]</h4>
|
|
}
|
|
}
|
|
}
|
|
</div>
|
|
|
|
|