Sonarr/NzbDrone.Web/Views/AddSeries/Index.cshtml

21 lines
455 B
Plaintext
Raw Normal View History

2011-07-27 22:59:48 +00:00
@using NzbDrone.Core.Repository
@section TitleContent{
Add Series
}
@section MainContent{
<h2>Add New Series</h2>
<div id="addNewSeries">
@{ Html.RenderAction("AddNew", "AddSeries"); }
</div>
2011-07-27 22:59:48 +00:00
<h2>
Add Series Already on Disk</h2>
<h3>
Manage Root Folders
</h3>
2011-07-01 20:59:25 +00:00
@{Html.RenderAction("RootDir");}
<div id="existingSeries">
2011-07-27 22:59:48 +00:00
@{ Html.RenderAction("ExistingSeries", "AddSeries"); }
</div>
}