mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 18:28:19 +00:00
12 lines
No EOL
581 B
Text
12 lines
No EOL
581 B
Text
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %>
|
|
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
|
|
<% Html.Telerik().Menu().Name("telerikGrid").Items(items =>
|
|
{
|
|
items.Add().Text("Add Series")
|
|
.Items(subItem => subItem.Add().Text("New Series").Action("AddNew", "Series"))
|
|
.Items(subItem => subItem.Add().Text("Existing Series").Action("AddExisting", "Series"));
|
|
|
|
items.Add().Text("Start RSS Sync").Action("RssSync", "Series");
|
|
items.Add().Text("Rename All").Action("RenameAll", "Series");
|
|
}).Render();
|
|
%> |