Un index au front office
* LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: traductions * Skills.aspx: Précise la fonction de la methode par un titre plus révélateur * Index.aspx: Alimente l'index du front officemain
parent
1b1a2ab557
commit
3cb492d979
@ -1,9 +1,21 @@
|
|||||||
<%@ Page Title="Front office" Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage" %>
|
<%@ Page Title="Front office" Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage" %>
|
||||||
|
|
||||||
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
<asp:Content ID="MainContentContent" ContentPlaceHolderID="MainContent" runat="server">
|
||||||
<ul><li>
|
<ul>
|
||||||
<%= Html.ActionLink("Catalog","Catalog" ) %>
|
<li><%= Html.ActionLink("Catalog","Catalog" ) %></li>
|
||||||
</li><li>
|
<li><%= Html.ActionLink("Basket","Basket" ) %> </li>
|
||||||
<%= Html.ActionLink("Estimates","Estimates" ) %>
|
<li><%= Html.ActionLink("Estimates","Estimates" ) %></li>
|
||||||
</li></ul>
|
<li><%= Html.ActionLink("Estimate","Estimate" ) %></li>
|
||||||
|
<% if (User.Identity.IsAuthenticated) { %>
|
||||||
|
<li><%= Html.ActionLink("Activities","Activities" ) %></li>
|
||||||
|
<li><%= Html.ActionLink("ManagedSiteSkills", "Skills" ) %></li>
|
||||||
|
<li><%= Html.ActionLink("UserSkills","UserSkills" ) %></li>
|
||||||
|
<% } else { %>
|
||||||
|
<li><%= Html.Translate("Activities") %>,
|
||||||
|
<%= Html.Translate("ManagedSiteSkills") %>,
|
||||||
|
<%= Html.Translate("UserSkills") %>:
|
||||||
|
<i><%= Html.Translate("AuthenticatedOnly") %></i></li>
|
||||||
|
<% }%>
|
||||||
|
|
||||||
|
</ul>
|
||||||
</asp:Content>
|
</asp:Content>
|
||||||
|
|||||||
Loading…
Reference in New Issue