You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.9 KiB
43 lines
1.9 KiB
@model NzbDrone.Web.Models.QualityProfileModel
|
|
@using NzbDrone.Web.Helpers
|
|
@{
|
|
Layout = null;
|
|
}
|
|
@using (Html.BeginCollectionItem("Profiles"))
|
|
{
|
|
var idClean = ViewData.TemplateInfo.HtmlFieldPrefix.Replace('[', '_').Replace(']', '_');
|
|
|
|
<div class="profileSection" data-profile-id="@Model.QualityProfileId">
|
|
<div class="qualityHeader">
|
|
<span class="titleText">
|
|
@Model.Name
|
|
</span>
|
|
<a href="@Url.Action("DeleteQualityProfile", "Settings", new { profileId = @Model.QualityProfileId })" class="delete-profile">
|
|
<i class="icon-remove"></i>
|
|
</a>
|
|
</div>
|
|
<div class="profileOptions">
|
|
@Html.LabelFor(x => x.Name)
|
|
@Html.TextBoxFor(x => x.Name, new { @class = "profileName_textbox" })
|
|
@Html.LabelFor(x => x.Cutoff)
|
|
@Html.DropDownListFor(m => m.Cutoff, new SelectList(Model.Allowed, Model.Cutoff))
|
|
</div>
|
|
<div class="qualitySelectees">
|
|
@Html.CheckBoxFor(m => m.Sdtv, new { @class = "quality-selectee" })
|
|
@Html.LabelFor(m => m.Sdtv)
|
|
@Html.CheckBoxFor(m => m.Dvd, new { @class = "quality-selectee" })
|
|
@Html.LabelFor(m => m.Dvd)
|
|
@Html.CheckBoxFor(m => m.Hdtv, new { @class = "quality-selectee" })
|
|
@Html.LabelFor(m => m.Hdtv)
|
|
@Html.CheckBoxFor(m => m.Webdl, new { @class = "quality-selectee" })
|
|
@Html.LabelFor(m => m.Webdl)
|
|
@Html.CheckBoxFor(m => m.Bluray720p, new { @class = "quality-selectee" })
|
|
@Html.LabelFor(m => m.Bluray720p)
|
|
@Html.CheckBoxFor(m => m.Bluray1080p, new { @class = "quality-selectee" })
|
|
@Html.LabelFor(m => m.Bluray1080p)
|
|
</div>
|
|
@Html.HiddenFor(x => x.QualityProfileId, new { @class = "qualityProfileId" })
|
|
@Html.Hidden("cleanId", idClean, new { @class = "cleanId" })
|
|
</div>
|
|
}
|