mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
8d38f98338
Renamed AddSeries/Add to AddSeries/Index
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});
|
|
} |