Fixed newznab config layout

This commit is contained in:
Mark McDowall
2012-09-08 16:57:11 -07:00
parent 4cefc5323c
commit 5eed64fa73
2 changed files with 41 additions and 28 deletions
@@ -20,27 +20,34 @@
}
</div>
<div class="providerOptions">
@Html.Label("Enabled")
@Html.CheckBoxFor(m => m.Enable)
@Html.LabelFor(x => x.Name)
@Html.TextBoxFor(x => x.Name, new {@class = "providerName_textbox"})
<div>
@Html.Label("Enabled")
@Html.CheckBoxFor(m => m.Enable)
</div>
@if(!Model.BuiltIn)
{
@Html.LabelFor(x => x.Url)
@Html.TextBoxFor(m => m.Url)
}
<div>
@Html.LabelFor(x => x.Name)
@Html.TextBoxFor(x => x.Name, new {@class = "providerName_textbox"})
</div>
<div>
@if(!Model.BuiltIn)
{
@Html.LabelFor(x => x.Url)
@Html.TextBoxFor(m => m.Url)
}
else
{
@Html.LabelFor(x => x.Url)
@Html.TextBox("DisabledIndexer", Model.Url, new { disabled = "disabled" })
@Html.HiddenFor(m => m.Url)
}
@Html.LabelFor(x => x.ApiKey)
@Html.TextBoxFor(m => m.ApiKey)
else
{
@Html.LabelFor(x => x.Url)
@Html.TextBox("DisabledIndexer", Model.Url, new { disabled = "disabled" })
@Html.HiddenFor(m => m.Url)
}
</div>
<div>
@Html.LabelFor(x => x.ApiKey)
@Html.TextBoxFor(m => m.ApiKey)
</div>
</div>
@Html.HiddenFor(x => x.Id, new {@class = "newznabProviderId"})