mirror of https://github.com/lidarr/Lidarr
18 lines
716 B
Plaintext
18 lines
716 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<String>>" %>
|
|
|
|
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
|
|
<%@ Import Namespace="NzbDrone.Web.Models" %>
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
Add Existing Series
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
<%: Html.DropDownList("qualityProfileId", (SelectList)ViewData["QualitySelectList"], ViewData["QualityProfileId"])%>
|
|
<%
|
|
foreach (var path in Model)
|
|
{
|
|
Html.RenderAction("RenderPartial", "AddSeries", new { path });
|
|
}
|
|
|
|
%>
|
|
</asp:Content>
|