-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Puria Nafisi Azizi <[email protected]>
- Loading branch information
1 parent
12426ff
commit e3b1bdd
Showing
6 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/routes/[[lang]]/(protected)/[id]/credential-detail/+page.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<script lang="ts"> | ||
import Header from '$lib/components/molecules/Header.svelte'; | ||
import { r, m } from '$lib/i18n'; | ||
export let data: any; | ||
const { credential } = data; | ||
</script> | ||
|
||
<Header>Credential detail</Header> | ||
<ion-content fullscreen class="ion-padding"> | ||
<d-credential-card {...credential} expiration-date="2017-01-01" verified="false"> </d-credential-card> | ||
<div class="bg-tab fixed bottom-0 left-0 w-full"> | ||
<d-credential-detail {...credential} description={credential.expand.templates[0].name}> | ||
<!-- <d-button color="accent" href={r(`/${credential.id}/verify/`)}>{m.Generate_QR()}</d-button> --> | ||
</d-credential-detail> | ||
</div> | ||
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters