mirror of https://github.com/Radarr/Radarr
15 lines
226 B
Plaintext
15 lines
226 B
Plaintext
|
@model IEnumerable<String>
|
||
|
|
||
|
@{
|
||
|
Layout = null;
|
||
|
}
|
||
|
|
||
|
@if (Model.Count() == 0)
|
||
|
{
|
||
|
@Html.DisplayText("No Series to Add");
|
||
|
}
|
||
|
|
||
|
@foreach (var path in Model)
|
||
|
{
|
||
|
Html.RenderAction("RenderPartial", "AddSeries", new {path});
|
||
|
}
|