mirror of https://github.com/Radarr/Radarr
17 lines
626 B
Plaintext
17 lines
626 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
Add Series
|
|
</asp:Content>
|
|
<asp:Content ID="Menu" ContentPlaceHolderID="ActionMenu" runat="server">
|
|
<%
|
|
Html.RenderPartial("SubMenu");
|
|
%>
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<%: Html.ActionLink("Add New Series", "AddNew", "Series") %>
|
|
<br />
|
|
<%: Html.ActionLink("Add Existing Series", "AddExisting", "Series") %>
|
|
|
|
</asp:Content> |