|
|
|
@ -20,20 +20,20 @@
|
|
|
|
|
@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))
|
|
|
|
|
@Html.DropDownListFor(m => m.Cutoff, new SelectList(Model.Allowed, "Id", "Name", Model.Cutoff))
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qualitySelectees">
|
|
|
|
|
@Html.CheckBoxFor(m => m.Sdtv, new { @class = "quality-selectee" })
|
|
|
|
|
@Html.CheckBoxFor(m => m.Sdtv, new { @class = "quality-selectee", data_quality_id = Model.SdtvId })
|
|
|
|
|
@Html.LabelFor(m => m.Sdtv)
|
|
|
|
|
@Html.CheckBoxFor(m => m.Dvd, new { @class = "quality-selectee" })
|
|
|
|
|
@Html.CheckBoxFor(m => m.Dvd, new { @class = "quality-selectee", data_quality_id = Model.DvdId })
|
|
|
|
|
@Html.LabelFor(m => m.Dvd)
|
|
|
|
|
@Html.CheckBoxFor(m => m.Hdtv, new { @class = "quality-selectee" })
|
|
|
|
|
@Html.CheckBoxFor(m => m.Hdtv, new { @class = "quality-selectee", data_quality_id = Model.HdtvId })
|
|
|
|
|
@Html.LabelFor(m => m.Hdtv)
|
|
|
|
|
@Html.CheckBoxFor(m => m.Webdl, new { @class = "quality-selectee" })
|
|
|
|
|
@Html.CheckBoxFor(m => m.Webdl, new { @class = "quality-selectee", data_quality_id = Model.WebdlId })
|
|
|
|
|
@Html.LabelFor(m => m.Webdl)
|
|
|
|
|
@Html.CheckBoxFor(m => m.Bluray720p, new { @class = "quality-selectee" })
|
|
|
|
|
@Html.CheckBoxFor(m => m.Bluray720p, new { @class = "quality-selectee", data_quality_id = Model.Bluray720p })
|
|
|
|
|
@Html.LabelFor(m => m.Bluray720p)
|
|
|
|
|
@Html.CheckBoxFor(m => m.Bluray1080p, new { @class = "quality-selectee" })
|
|
|
|
|
@Html.CheckBoxFor(m => m.Bluray1080p, new { @class = "quality-selectee", data_quality_id = Model.Bluray1080pId })
|
|
|
|
|
@Html.LabelFor(m => m.Bluray1080p)
|
|
|
|
|
</div>
|
|
|
|
|
@Html.HiddenFor(x => x.QualityProfileId, new { @class = "qualityProfileId" })
|
|
|
|
|