mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
8d38f98338
Renamed AddSeries/Add to AddSeries/Index
15 lines
No EOL
226 B
Text
15 lines
No EOL
226 B
Text
@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});
|
|
} |