2011-01-29 06:10:22 +00:00
|
|
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %>
|
|
|
|
|
|
|
|
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
|
|
|
|
|
|
|
|
<%
|
2011-02-26 04:07:22 +00:00
|
|
|
Html.Telerik().Menu().Name("Menu").Items(items =>
|
|
|
|
{
|
|
|
|
items.Add().Text("General").Action("General", "Settings");
|
|
|
|
items.Add().Text("Indexers").Action("Indexers", "Settings");
|
|
|
|
items.Add().Text("Downloads").Action("Downloads", "Settings");
|
|
|
|
items.Add().Text("Quality").Action("Quality", "Settings");
|
|
|
|
items.Add().Text("Episode Sorting").Action("EpisodeSorting", "Settings");
|
2011-03-07 07:32:36 +00:00
|
|
|
items.Add().Text("Notifications").Action("Notifications", "Settings");
|
2011-02-26 04:07:22 +00:00
|
|
|
}).Render();
|
2011-01-29 06:10:22 +00:00
|
|
|
%>
|
|
|
|
|
|
|
|
|