mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
80 lines
1.7 KiB
Plaintext
80 lines
1.7 KiB
Plaintext
@using NzbDrone.Web.Helpers
|
|
@{ViewBag.Title = "Add Series";}
|
|
|
|
@section HeaderContent
|
|
{
|
|
<style>
|
|
.existingSeries
|
|
{
|
|
border-color: #f2f2f2;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
background-color: #f2f2f2;
|
|
margin: 0px 10px 10px 0px;
|
|
padding: 5px;
|
|
display: block;
|
|
}
|
|
.masterQualitySelector
|
|
{
|
|
left: 415px;
|
|
position: relative;
|
|
}
|
|
|
|
.seriesPathValue
|
|
{
|
|
display: block;
|
|
}
|
|
|
|
.existingSeriesContainer
|
|
{
|
|
position: relative;
|
|
}
|
|
|
|
.ui-autocomplete.seriesLookupResults {
|
|
max-height: 180px;
|
|
overflow-y: auto;
|
|
/* prevent horizontal scrollbar */
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.tvDbLink {
|
|
float: right;
|
|
}
|
|
|
|
.tvDbLink:hover {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
@{Html.RenderAction("RootDir");}
|
|
<div class="jquery-accordion" id="addSeriesAccordion">
|
|
<h3>
|
|
<a href="#">Add New Series</a></h3>
|
|
<div id="addNewSeries">
|
|
@{ Html.RenderAction("AddNew", "AddSeries"); }
|
|
</div>
|
|
<h3>
|
|
<a href="#">Add Series Already on Disk</a></h3>
|
|
<div id="existingSeries">
|
|
@{ Html.RenderAction("ExistingSeries", "AddSeries"); }
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts
|
|
{
|
|
@Html.IncludeScript("NzbDrone/addSeries.js")
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$('#addSeriesAccordion').accordion("activate", false);
|
|
});
|
|
|
|
$(document).on('click', '.tvDbLink', function (event) {
|
|
var url = $(this).attr('rel');
|
|
window.open(url, 'thetvdb');
|
|
event.preventDefault();
|
|
});
|
|
</script>
|
|
} |