-
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.
- Loading branch information
Showing
17 changed files
with
294 additions
and
113 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
frontend/dist/assets/index-566a759a.css → frontend/dist/assets/index-0d55544a.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,25 @@ | ||
<script> | ||
export let items = []; | ||
export let title; | ||
</script> | ||
|
||
<!-- <div class="row bg-light border-bottom"> | ||
<div class="col h4">{title}</div> | ||
</div> --> | ||
|
||
<table class="table table-hover table-sm"> | ||
<thead class="table-success"> | ||
<tr><th>{title}</th> | ||
<th class="text-end">Units</th> | ||
<th class="text-end">SAR</th> | ||
<th class="text-end">USD</th></tr> | ||
</thead> | ||
{#each items as i} | ||
<tbody> | ||
<tr><td>{i[0]}</td> | ||
<td class="text-end">{i[1]}</td> | ||
<td class="text-end">{i[2]}</td> | ||
<td class="text-end">{Math.round(Number(i[2]) /3.75)}</td></tr> | ||
</tbody> | ||
{/each} | ||
</table> |
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
Oops, something went wrong.