Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/User/Roles.cshtml @ 13740

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

#2582 Job Manager done. Start user management

File size: 1013 bytes
Line 
1@using HeuristicLab.Clients.Hive.WebJobManager.ViewModels.User;
2
3
4<div>
5
6    @Html.Partial("Navbar", new HeuristicLab.Clients.Hive.WebJobManager.ViewModels.NavbarViewModel("User"))
7
8    <ul class="nav nav-pills nav-justified">
9        <li role="presentation"
10            class="">
11            <a asp-controller="User"
12               asp-action="Index">
13                Users
14            </a>
15        </li>
16        <li role="presentation"
17            class="">
18            <a asp-controller="User"
19               asp-action="Groups">
20                Groups
21            </a>
22        </li>
23        <li role="presentation"
24            class="active">
25            <a asp-controller="User"
26               asp-action="Roles">
27                Roles
28            </a>
29        </li>
30    </ul>
31    <div class="row"
32         style="text-align:center">
33        Model.message
34    </div>
35    <div class="row"
36         style="padding:10px; margin-right:0px!important">
37
38    </div>
39</div>
Note: See TracBrowser for help on using the repository browser.