mirror of https://github.com/Ombi-app/Ombi
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.
70 lines
2.3 KiB
70 lines
2.3 KiB
@Html.Partial("/Admin/_Sidebar")
|
|
@{
|
|
int port;
|
|
if (Model.Port == 0)
|
|
{
|
|
port = 5050;
|
|
}
|
|
else
|
|
{
|
|
port = Model.Port;
|
|
}
|
|
}
|
|
<div class="col-sm-8">
|
|
<form class="form-horizontal" method="POST" id="mainForm">
|
|
<fieldset>
|
|
<legend>CouchPotato Settings</legend>
|
|
|
|
<div class="form-group">
|
|
<label for="Enabled" class="col-lg-2 control-label">Enable CouchPotato</label>
|
|
<div class="col-lg-10 checkbox">
|
|
<label>
|
|
@if (Model.Enabled)
|
|
{
|
|
<input type="checkbox" id="Enabled" name="Enabled" checked="checked">
|
|
}
|
|
else
|
|
{
|
|
<input type="checkbox" id="Enabled" name="Enabled">
|
|
}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="Ip" class="col-lg-2 control-label">CouchPotato Hostname or IP</label>
|
|
<div class="col-lg-10">
|
|
<input type="text" class="form-control" id="Ip" name="Ip" placeholder="localhost" value="@Model.Ip">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="portNumber" class="col-lg-2 control-label">Port</label>
|
|
|
|
<div class="col-lg-10">
|
|
<input type="text" class="form-control" id="portNumber" name="Port" placeholder="Port Number" value="@port">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="ApiKey" class="col-lg-2 control-label">CouchPotato API Key</label>
|
|
<div class="col-lg-10">
|
|
<input type="text" class="form-control" id="ApiKey" name="ApiKey" value="@Model.ApiKey">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
<div class="col-lg-10 col-lg-offset-2">
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
|
|
|