Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add help with link to user manual #457

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/lib/Navigation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
NavLink,
} from 'sveltestrap';
import Fa from 'svelte-fa'
import { faCloud, faRuler, faFile, faCertificate } from '@fortawesome/free-solid-svg-icons'
import { faCloud, faRuler, faFile, faCertificate, faQuestion } from '@fortawesome/free-solid-svg-icons'
import { SvelteToast } from '@zerodevx/svelte-toast';
import { base } from '$app/paths';
import { page } from '$app/stores';
Expand Down Expand Up @@ -43,6 +43,9 @@ let routes = [
{
url: '/certificates',
name: 'Certificates'
},
{
name: 'Help'
}
];
Expand Down Expand Up @@ -90,6 +93,11 @@ console.log($page.url);
<NavLink href="{base}/login">Login</NavLink>
</NavItem>
{/if}
<NavItem>
<NavLink href="https://medina-project.eu/wp-content/uploads/MEDINA_User_Manuals/MEDINA_Orchestrator_UserManual.pdf" target="_blank">
<Fa icon={faQuestion} /> Help
</NavLink>
</NavItem>
<!-- removed for medina: <Dropdown nav inNavbar>
<DropdownToggle nav caret>Account</DropdownToggle>
<DropdownMenu end>
Expand Down