Renamed AddSeries/Add to AddSeries/Indexpull/4/head
parent
cd4268cf4a
commit
8d38f98338
@ -0,0 +1,15 @@
|
|||||||
|
@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});
|
||||||
|
}
|
Loading…
Reference in new issue