mirror of https://github.com/Ombi-app/Ombi
parent
58c9cc6776
commit
cc3d41aa9a
@ -1,10 +1,50 @@
|
||||
<div class="col-lg-3 col-md-3 col-sm-4">
|
||||
<div class="list-group table-of-contents">
|
||||
<a class="list-group-item" href="/admin">Plex Request Settings</a>
|
||||
<a class="list-group-item" href="/admin/authentication">Authentication</a>
|
||||
<a class="list-group-item" href="/admin/plex">Plex Settings</a>
|
||||
<a class="list-group-item" href="/admin/couchpotato">CouchPotato Settings</a>
|
||||
<a class="list-group-item" href="/admin/sonarr">Sonarr Settings</a>
|
||||
@if (Context.Request.Path == "/admin")
|
||||
{
|
||||
<a class="list-group-item active" href="/admin">Plex Request Settings</a>
|
||||
}
|
||||
else
|
||||
{
|
||||
<a class="list-group-item" href="/admin">Plex Request Settings</a>
|
||||
}
|
||||
@if (Context.Request.Path == "/admin/authentication")
|
||||
{
|
||||
|
||||
<a class="list-group-item active" href="/admin/authentication">Authentication</a>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
<a class="list-group-item" href="/admin/authentication">Authentication</a>
|
||||
}
|
||||
|
||||
@if (Context.Request.Path == "/admin/plex")
|
||||
{
|
||||
<a class="list-group-item active" href="/admin/plex">Plex Settings</a>
|
||||
}
|
||||
else
|
||||
{
|
||||
<a class="list-group-item" href="/admin/plex">Plex Settings</a>
|
||||
}
|
||||
@if (Context.Request.Path == "/admin/couchpotato")
|
||||
{
|
||||
<a class="list-group-item active" href="/admin/couchpotato">CouchPotato Settings</a>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
<a class="list-group-item" href="/admin/couchpotato">CouchPotato Settings</a>
|
||||
}
|
||||
@if (Context.Request.Path == "/admin/sonarr")
|
||||
{
|
||||
<a class="list-group-item active" href="/admin/sonarr">Sonarr Settings</a>
|
||||
}
|
||||
else
|
||||
{
|
||||
<a class="list-group-item" href="/admin/sonarr">Sonarr Settings</a>
|
||||
|
||||
}
|
||||
@*<a class="list-group-item" href="/admin/sickbeard">Sickbeard Settings</a>*@
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in new issue