|
8 | 8 | <ul class="navbar-nav flex-column mt-5"> |
9 | 9 | <li class="nav-item py-2"> |
10 | 10 | <a routerLink="/auth" routerLinkActive="active" class="nav-link pl-5 position-relative rounded" id="auth"> |
11 | | - Authenticate |
| 11 | + {{ 'NAV.LOGIN' | translate }} |
12 | 12 | </a> |
| 13 | + <fa-icon [icon]="faSignInAlt" class="navbar-icon"></fa-icon> |
13 | 14 | </li> |
14 | 15 | </ul> |
15 | 16 | </div> |
|
20 | 21 | </button> |
21 | 22 | <div class="collapse navbar-collapse flex-grow-0" id="navbar"> |
22 | 23 | <ul class="navbar-nav flex-column mt-5"> |
| 24 | + |
23 | 25 | <li class="nav-item py-2"> |
24 | 26 | <app-global-admin></app-global-admin> |
25 | 27 | </li> |
26 | 28 | <li class="nav-item py-2"> |
27 | | - <!-- <label class="form-label" for="name">{{'QUESTION.CHOOSE-PERMISSION-TYPE' | translate}}</label>* --> |
28 | | - <select id="organisation" name="organisation" class="form-select" required #orgSelect |
| 29 | + <app-organisation-dropdown></app-organisation-dropdown> |
| 30 | + <!-- <select id="organisation" name="organisation" class="form-select" required #orgSelect <!-- |
29 | 31 | (change)="onChange(orgSelect.value)"> |
30 | 32 | <option *ngFor="let org of organisations" [value]="org.id" |
31 | 33 | [selected]="org.id === getSelectedOrganisation()"> |
32 | 34 | {{org.name}}</option> |
33 | | - </select> |
| 35 | + </select> --> |
34 | 36 | </li> |
35 | 37 | <li class="nav-item py-2"> |
36 | 38 | <ul class="navbar-nav flex-column"> |
37 | | - <li class="nav-item py-2"> |
38 | | - <a routerLink="/my-applications" routerLinkActive="active" class="nav-link pl-5 position-relative rounded" |
39 | | - id="myApplications"> |
40 | | - {{ 'NAV.APPLICATIONS' | translate }} |
41 | | - </a> |
42 | | - </li> |
| 39 | + <p class="ml-2">Generelt</p> |
| 40 | + <mat-divider></mat-divider> |
43 | 41 | <li class="nav-item py-2"> |
44 | 42 | <a routerLink="/lora-gateways" routerLinkActive="active" class="nav-link pl-5 position-relative rounded" |
45 | 43 | id="myLoraGateway"> |
46 | 44 | {{ 'NAV.LORA-GATEWAYS' | translate }} |
47 | 45 | </a> |
| 46 | + <fa-icon [icon]="faBroadcastTower" class="navbar-icon"></fa-icon> |
| 47 | + |
48 | 48 | </li> |
49 | 49 | <li class="nav-item py-2"> |
50 | 50 | <a routerLink="/profiles" routerLinkActive="active" class="nav-link pl-5 position-relative rounded" |
51 | 51 | id="profiles"> |
52 | 52 | {{ 'NAV.PROFILES' | translate }} |
53 | 53 | </a> |
| 54 | + <fa-icon [icon]="faSlidersH" class="navbar-icon"></fa-icon> |
54 | 55 | </li> |
55 | 56 | <li class="nav-item py-2"> |
56 | 57 | <a routerLink="/payload-decoder" routerLinkActive="active" class="nav-link pl-5 position-relative rounded" |
57 | 58 | id="payload-decoder"> |
58 | 59 | {{ 'NAV.PAYLOAD-DECODER' | translate }} |
59 | 60 | </a> |
| 61 | + <fa-icon [icon]="faNetworkWired" class="navbar-icon"></fa-icon> |
60 | 62 | </li> |
61 | 63 | </ul> |
62 | 64 | </li> |
63 | | - <li class="nav-item py-2"> |
| 65 | + <li class="nav-item py-2 "> |
64 | 66 | <a style="cursor: pointer;" class="nav-link pl-5 position-relative rounded" (click)="onLogout()">Logout</a> |
| 67 | + <fa-icon [icon]="faSignOutAlt" class="navbar-icon"></fa-icon> |
65 | 68 | </li> |
66 | 69 | </ul> |
67 | 70 | </div> |
|
0 commit comments