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.
67 lines
2.1 KiB
67 lines
2.1 KiB
<div class="col-lg-3 col-md-3 col-sm-4">
|
|
<div class="list-group table-of-contents">
|
|
@if (Context.Request.Path == "/admin")
|
|
{
|
|
<a class="list-group-item active" href="/admin">Plex Request</a>
|
|
}
|
|
else
|
|
{
|
|
<a class="list-group-item" href="/admin">Plex Request</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</a>
|
|
}
|
|
else
|
|
{
|
|
<a class="list-group-item" href="/admin/plex">Plex</a>
|
|
}
|
|
@if (Context.Request.Path == "/admin/couchpotato")
|
|
{
|
|
<a class="list-group-item active" href="/admin/couchpotato">CouchPotato</a>
|
|
}
|
|
else
|
|
{
|
|
|
|
<a class="list-group-item" href="/admin/couchpotato">CouchPotato</a>
|
|
}
|
|
@if (Context.Request.Path == "/admin/sonarr")
|
|
{
|
|
<a class="list-group-item active" href="/admin/sonarr">Sonarr</a>
|
|
}
|
|
else
|
|
{
|
|
<a class="list-group-item" href="/admin/sonarr">Sonarr</a>
|
|
}
|
|
@*<a class="list-group-item" href="/admin/sickbeard">Sickbeard Settings</a>*@
|
|
|
|
@*@if (Context.Request.Path == "/admin/emailnotification")
|
|
{
|
|
<a class="list-group-item active" href="/admin/emailnotification">Email Notifications</a>
|
|
}
|
|
else
|
|
{
|
|
<a class="list-group-item" href="/admin/emailnotification">Email Notifications</a>
|
|
}*@
|
|
|
|
@if (Context.Request.Path == "/admin/status")
|
|
{
|
|
<a class="list-group-item active" href="/admin/status">Status</a>
|
|
}
|
|
else
|
|
{
|
|
<a class="list-group-item" href="/admin/status">Status</a>
|
|
}
|
|
</div>
|
|
</div> |