-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMenu.ascx
27 lines (25 loc) · 943 Bytes
/
Menu.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<string>" %>
<%@ Import Namespace="EPiServer.Cms.Shell" %>
<%@ Import Namespace="EPiServer.Shell.Web.Mvc.Html" %>
<div class="epi-tabView">
<ul>
<li class="<%= Model == "Index" ? "selected" : "" %> ntab">
<%= Html.ViewLink(
"Content Approval ", // html helper
"", // title
"Index", // Action name
"", // css class
"",
new {}) %>
</li>
<li class="<%= Model == "ChangeApproval" ? "selected" : "" %> ntab">
<%= Html.ViewLink(
"Change Approval ", // html helper
"", // title
"Index", // Action name
"", // css class
"",
new {isChange = true}) %>
</li>
</ul>
</div>