Add Existing with Refresh button after modifying root dirs.

Renamed AddSeries/Add to AddSeries/Index
This commit is contained in:
Mark McDowall
2011-05-31 13:50:19 -07:00
parent cd4268cf4a
commit 8d38f98338
7 changed files with 48 additions and 20 deletions
@@ -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});
}