Fichiers manquant au dernier commit
This commit is contained in:
parent
e8bf2dd8fa
commit
d8965ed526
17 changed files with 1412 additions and 0 deletions
23
web/Views/FrontOffice/Performers.aspx
Normal file
23
web/Views/FrontOffice/Performers.aspx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<%@ Page Language="C#" Title="Performers" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<PerformerAvailability>>" %>
|
||||
|
||||
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
||||
<% foreach (var available in Model) { %>
|
||||
<div class="usercard">
|
||||
<%= Html.Partial("Performer", available.Profile ) %><br>
|
||||
<% if (available.DateAvailable) {
|
||||
%>
|
||||
<%= Html.Translate("ThisPerformerGivesAccessToHisCalendarAndSeemsToBeAvailable") %>
|
||||
<%
|
||||
}
|
||||
else if (available.Profile.HasCalendar()) {
|
||||
%>
|
||||
<%= Html.Translate("ThisPerformerGivesAccessToHisCalendarAndItAppearsHeShouldNotBeAvailable") %>
|
||||
<%
|
||||
} else {
|
||||
%>
|
||||
<%= Html.Translate("ThisPerformerDoesntGiveAccessToHisCalendar") %>
|
||||
|
||||
|
||||
<%
|
||||
} %></div><% } %>
|
||||
</asp:Content>
|
||||
Loading…
Add table
Add a link
Reference in a new issue