mirror of https://github.com/lidarr/Lidarr
25 lines
560 B
Plaintext
25 lines
560 B
Plaintext
@using NzbDrone.Core.Repository
|
|
@section TitleContent{
|
|
Add Series
|
|
}
|
|
|
|
@section HeaderContent{
|
|
<script src="../../Scripts/addSeries.js" type="text/javascript"></script>
|
|
}
|
|
|
|
@section MainContent{
|
|
<h2>Add New Series</h2>
|
|
<div id="addNewSeries">
|
|
@{ Html.RenderAction("AddNew", "AddSeries"); }
|
|
</div>
|
|
<h2>
|
|
Add Series Already on Disk</h2>
|
|
<h3>
|
|
Manage Root Folders
|
|
</h3>
|
|
@{Html.RenderAction("RootDir");}
|
|
<div id="existingSeries">
|
|
@{ Html.RenderAction("ExistingSeries", "AddSeries"); }
|
|
</div>
|
|
}
|