Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Shared/Navbar.cshtml @ 13733

Last change on this file since 13733 was 13733, checked in by jlodewyc, 8 years ago

#2582 Last fixes Job Manager

File size: 1.1 KB
Line 
1
2@model HeuristicLab.Clients.Hive.WebJobManager.ViewModels.NavbarViewModel
3
4    <ul class="nav nav-tabs">
5        <li role="presentation"
6            class="@(Model.Active == "Job" ? "active" : "")">
7            <a asp-controller="Job"
8               asp-action="Index">
9                Job management
10            </a>
11        </li>
12        <li role="presentation"
13            class="@(Model.Active == "User" ? "active" : "")">
14            <a asp-controller="User"
15               asp-action="Index">
16                User management
17            </a>
18        </li>
19        <li role="presentation"
20            class="@(Model.Active == "Resource" ? "active" : "")">
21            <a asp-controller="Resource"
22               asp-action="Index">
23                Resources
24            </a>
25        </li>
26        <li role="presentation"
27            class="pull-right ">
28            <a asp-controller="Home"
29               asp-action="Logout"
30               class="text-danger">
31                Logout
32                <i class="fa fa-sign-out "></i>
33            </a>
34        </li>
35    </ul>
Note: See TracBrowser for help on using the repository browser.