-
Notifications
You must be signed in to change notification settings - Fork 1
/
app-header.hbs
36 lines (36 loc) · 1002 Bytes
/
app-header.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<AuMainHeader
@brandLink="https://www.vlaanderen.be/nl"
@homeRoute="index"
@appTitle="Data Monitoring Tool"
>
<li class="au-c-list-horizontal__item">
<AuLink @route="help" @skin="secondary" @icon="question-circle">
Meer info
</AuLink>
</li>
<li class="au-c-list-horizontal__item">
{{#if this.session.isAuthenticated}}
<AuDropdown
@title={{concat
this.currentSession.fullName
" - "
this.currentSession.groupClassification.label
" "
this.currentSession.group.name
}}
@buttonLabel="Account settings"
@alignment="right"
role="menu"
>
<AuLink role="menuitem" @route="auth.switch" @icon="switch">
Wissel van bestuurseenheid
</AuLink>
<AuLink @route="auth.logout" @icon="logout" role="menuitem">
Afmelden
</AuLink>
</AuDropdown>
{{else}}
<LoginButton @isCompact={{true}} />
{{/if}}
</li>
</AuMainHeader>