mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-14 06:52:36 +01:00
12 lines
495 B
Plaintext
12 lines
495 B
Plaintext
|
<%@ 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("View Unmapped Folders").Action("Unmapped", "Series");
|
||
|
items.Add().Text("Start RSS Sync").Action("RssSync", "Series");
|
||
|
items.Add().Text("Rename All").Action("RenameAll", "Series");
|
||
|
items.Add().Text("Add Series").Action("Add", "Series");
|
||
|
}).Render();
|
||
|
%>
|