1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/Views/AddSeries/Index.cshtml

19 lines
420 B
Plaintext
Raw Normal View History

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