2011-05-18 03:39:26 +00:00
|
|
|
@using NzbDrone.Web.Helpers;
|
|
|
|
@model NzbDrone.Web.Models.QualityModel
|
2011-02-03 02:49:52 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function () {
|
|
|
|
var options = {
|
|
|
|
target: '#result',
|
|
|
|
beforeSubmit: showRequest,
|
|
|
|
success: showResponse,
|
|
|
|
type: 'post',
|
|
|
|
resetForm: false
|
|
|
|
};
|
|
|
|
$('#form').ajaxForm(options);
|
2011-02-15 01:59:23 +00:00
|
|
|
$('#save_button').attr('disabled', '');
|
2011-02-03 02:49:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function showRequest(formData, jqForm, options) {
|
|
|
|
$("#result").empty().html('Saving...');
|
|
|
|
$("#form :input").attr("disabled", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function showResponse(responseText, statusText, xhr, $form) {
|
|
|
|
$("#result").empty().html(responseText);
|
|
|
|
$("#form :input").attr("disabled", false);
|
2011-02-12 06:10:38 +00:00
|
|
|
}
|
2011-05-18 03:39:26 +00:00
|
|
|
|
|
|
|
function addOption(text, value) {
|
|
|
|
var myCombo = $('#DefaultQualityProfileId');
|
|
|
|
|
|
|
|
var exists = $("#DefaultQualityProfileId option[value='" + value + "']");
|
|
|
|
|
|
|
|
if (exists.length == 0)
|
|
|
|
myCombo.append($('\<option\> \</option\>').val(value).html(text));
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeOption(value) {
|
|
|
|
$("#DefaultQualityProfileId option[value='" + value + "']").remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
function renameOption(text, value) {
|
|
|
|
$("#DefaultQualityProfileId option[value='" + value + "']").html(text);
|
|
|
|
}
|
2011-02-03 02:49:52 +00:00
|
|
|
</script>
|
|
|
|
|
2011-04-21 01:43:09 +00:00
|
|
|
@using (Html.BeginForm("SaveQuality", "Settings", FormMethod.Post, new {id = "form", name = "form"}))
|
|
|
|
{
|
2011-02-05 06:07:25 +00:00
|
|
|
<fieldset>
|
2011-04-21 01:43:09 +00:00
|
|
|
<legend>Quality</legend>
|
2011-02-03 18:28:14 +00:00
|
|
|
|
2011-02-08 07:08:38 +00:00
|
|
|
<div class="rightSide" style="float: right; width: 65%;">
|
2011-05-18 03:39:26 +00:00
|
|
|
<div class="config-section">
|
|
|
|
<div class="config-group">
|
|
|
|
<div class="config-title">@Html.LabelFor(m => m.DownloadPropers)</div>
|
|
|
|
<div class="config-value">@Html.CheckBoxFor(m => m.DownloadPropers)</div>
|
|
|
|
</div>
|
|
|
|
<div class="config-group2">
|
|
|
|
<div class="config-validation">@Html.ValidationMessageFor(m => m.DownloadPropers)</div>
|
|
|
|
<div class="config-description">@Html.DescriptionFor(m => m.DownloadPropers)</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="config-section">
|
|
|
|
<div class="config-group">
|
2011-04-21 01:43:09 +00:00
|
|
|
<div class="config-title">@Html.LabelFor(m => m.DefaultQualityProfileId)</div>
|
|
|
|
<div class="config-value">@Html.DropDownListFor(m => m.DefaultQualityProfileId, Model.SelectList)</div>
|
2011-05-18 03:39:26 +00:00
|
|
|
</div>
|
|
|
|
<div class="config-group2">
|
2011-04-21 01:43:09 +00:00
|
|
|
<div class="config-validation">@Html.ValidationMessageFor(m => m.DefaultQualityProfileId)</div>
|
2011-05-18 03:39:26 +00:00
|
|
|
<div class="config-description">@Html.DescriptionFor(m => m.DefaultQualityProfileId)</div>
|
2011-02-08 07:08:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-02-05 06:07:25 +00:00
|
|
|
</div>
|
2011-05-18 03:39:26 +00:00
|
|
|
|
2011-02-08 07:08:38 +00:00
|
|
|
<div id="leftSide" style="width:35%;">
|
|
|
|
<div style="padding-top: 10px;">
|
|
|
|
<div style="padding-left: 7px; margin-bottom: 5px;">
|
2011-04-21 01:43:09 +00:00
|
|
|
<a id="addItem" style="text-decoration:none;" href="@Url.Action("AddUserProfile", "Settings")">
|
2011-02-08 07:08:38 +00:00
|
|
|
<img src="../../Content/Images/Plus.png" alt="Add New Profile" />
|
|
|
|
<h4 style="margin-left: 3px; display: inline; color: Black;">Add New Profile</h4></a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="user-profiles">
|
2011-04-22 00:30:19 +00:00
|
|
|
@foreach (var item in Model.UserProfiles)
|
|
|
|
{
|
|
|
|
Html.RenderAction("GetQualityProfileView", item);
|
|
|
|
}
|
2011-02-08 07:08:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-02-06 02:52:49 +00:00
|
|
|
|
2011-02-08 07:08:38 +00:00
|
|
|
<div style="margin-top: 10px; padding-left: 5px;">
|
2011-02-15 01:59:23 +00:00
|
|
|
<input type="submit" id="save_button" value="Save" disabled="disabled" />
|
2011-02-05 18:27:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-02-06 02:52:49 +00:00
|
|
|
|
2011-02-05 06:07:25 +00:00
|
|
|
</fieldset>
|
2011-04-21 01:43:09 +00:00
|
|
|
}
|
2011-05-13 04:46:26 +00:00
|
|
|
<div id="result" class="hiddenResult"></div>
|
2011-02-05 18:27:14 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
$("#addItem").click(function () {
|
|
|
|
$.ajax({
|
|
|
|
url: this.href,
|
|
|
|
cache: false,
|
2011-05-18 03:39:26 +00:00
|
|
|
success: function (html) {
|
|
|
|
$("#user-profiles").prepend(html);
|
|
|
|
|
|
|
|
}
|
2011-02-05 18:27:14 +00:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2011-04-22 00:30:19 +00:00
|
|
|
var deleteQualityProfileUrl = '@Url.Action("DeleteQualityProfile", "Settings")';
|
|
|
|
|
|
|
|
function deleteProfile(id) {
|
|
|
|
sendToServer(id);
|
2011-04-24 23:00:09 +00:00
|
|
|
$("#div_" + id).remove();
|
2011-05-18 03:39:26 +00:00
|
|
|
removeOption(id);
|
2011-04-22 00:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function sendToServer(id) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: deleteQualityProfileUrl,
|
|
|
|
data: jQuery.param({ profileId: id }),
|
|
|
|
error: function (req, status, error) {
|
2011-04-24 23:00:09 +00:00
|
|
|
alert("Sorry! We could not delete your Profile at this time. " + error);
|
2011-04-22 00:30:19 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2011-02-05 18:27:14 +00:00
|
|
|
</script>
|