mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
9caacc4809
Editor should support about 40 seasons without scrolling (TvDb doesn't list all seasons for large series) Removed &pp=3 from SabProvider (it will use SAB's configured Post Processing value).
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
@using NzbDrone.Web.Helpers;
|
|
@using NzbDrone.Web.Models;
|
|
@model NzbDrone.Web.Models.SeriesModel
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<div style="width: 435px; margin: 10px;">
|
|
|
|
<div class="edit-group">
|
|
<div class="config-title">@Html.LabelFor(m => m.Path)</div>
|
|
<div class="config-value">@Html.TextBoxFor(m => m.Path, new { style = "width: 300" })</div>
|
|
</div>
|
|
|
|
<div class="edit-group">
|
|
<div class="config-title">@Html.LabelFor(m => m.Monitored)</div>
|
|
<div class="config-value">@Html.CheckBoxFor(m => m.Monitored, new { style = "margin-right:287px" })</div>
|
|
</div>
|
|
|
|
<div class="edit-group">
|
|
<div class="config-title">@Html.LabelFor(m => m.SeasonFolder)</div>
|
|
<div class="config-value">@Html.CheckBoxFor(m => m.SeasonFolder, new { style = "margin-right:287px" })</div>
|
|
</div>
|
|
|
|
<div class="edit-group">
|
|
<b>@Html.LabelFor(m => m.QualityProfileId)</b>
|
|
@Html.DropDownListFor(model => model.QualityProfileId, (SelectList)ViewData["SelectList"], new { style = "margin-left:40px" })
|
|
</div>
|
|
</div> |