côté sérveur. * Makefile: * Yavsc.sln: * pkg.mdproj: * Yavsc.csproj: * Presta.csproj: * TestAPI.csproj: * YavscModel.csproj: * fortune.csproj: * WebControls.csproj: * YavscClient.csproj: * SalesCatalog.csproj: * ITContentProvider.csproj: * NpgsqlMRPProviders.csproj: * NpgsqlBlogProvider.csproj: * NpgsqlContentProvider.csproj: ajout d'une configuration de debuggage pour Lua * App.master: * LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: traductions * EventPub.aspx: debug sur page encore inutilisée * NominativeEventPub.cs: implémentation du nom de préstataire dans la notification nominative * Commande.cs: code plus simple * GoogleHelpers.cs: * MessageWithPayLoad.cs: fixe l'envoi de la notification GCM * MessageWithPayloadResponse.cs: fixe la réception de la notification GCM * WorkFlowManager.cs: envoyer un notification GCM + email à la demande de devis
19 lines
938 B
Plaintext
19 lines
938 B
Plaintext
<%@ Page Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage<EventCirclesPub>" %>
|
|
|
|
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<% using (Html.BeginForm()) { %>
|
|
|
|
<%= Html.LabelFor(model => model.Title) %>: <%=Model.Title%><br/>
|
|
<%= Html.LabelFor(model => model.Description) %>: <%=Model.Description%> <br/>
|
|
<%= Html.LabelFor(model => model.Location) %>: <%=Model.Location%> <br/>
|
|
<%= Html.LabelFor(model => model.StartDate) %>: <%=Model.StartDate%> <br/>
|
|
<%= Html.LabelFor(model => model.EndDate) %>: <%=Model.EndDate%> <br/>
|
|
<%= Html.LabelFor(model => model.CircleIds) %>: <%=Model.CircleIds%> <br/>
|
|
<%= Html.LabelFor(model => model.EventWebPage) %>: <%=Model.EventWebPage%> <br/>
|
|
<%= Html.LabelFor(model => model.ProviderName) %>: <%=Model.ProviderName%> <br/>
|
|
<%= Html.LabelFor(model => model.Comment) %>: <%=Model.Comment%> <br/>
|
|
|
|
<% } %>
|
|
|
|
</asp:Content> |