mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
460e48d6a1
Default value for Quality Dropbox in AddExisting is now the default value from Settings.
20 lines
686 B
Plaintext
20 lines
686 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">
|
|
<%
|
|
if (Model.Count() == 0)
|
|
Html.DisplayText("No Series to Add");
|
|
|
|
foreach (var path in Model)
|
|
{
|
|
Html.RenderAction("RenderPartial", "AddSeries", new { path });
|
|
}
|
|
|
|
%>
|
|
</asp:Content>
|