-
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.
Merge pull request #384 from navikt/oms-meldt-inn-endringer
Ny mal for meldt inn endringer for Omstillingstønad
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
apps/ey-pdfgen/data/omsendringer/oms_meldt_inn_endring_v1.json
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,6 @@ | ||
{ | ||
"sakId": 123, | ||
"type": "ANNEN", | ||
"endringer": "Fritekst med endringer fra bruker...", | ||
"tidspunkt": "20.11.2024 05:06:07" | ||
} |
30 changes: 30 additions & 0 deletions
30
apps/ey-pdfgen/templates/omsendringer/oms_meldt_inn_endring_v1.hbs
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,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="no"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
{{> eypdfgen/partials_v2/style}} | ||
<title>Meldt inn endringer for Omstillingsstønad med sakId {{ sakId }}</title> | ||
</head> | ||
<body> | ||
|
||
<div id="header"> | ||
<img class="navlogo" src="{{ image "Navlogo.png" }}" /> | ||
<h1 class="title" >Meldt inn endringer for Omstillingsstønad med sakId {{ sakId }}</h1> | ||
</div> | ||
<div> | ||
<h4> | ||
Det ble oppgitt {{ tidspunkt }} | ||
</h4> | ||
|
||
<div class="row opplysning"> | ||
<div class="col">Endringstype</div> | ||
<div class="col">{{ type }}</div> | ||
</div> | ||
<div class="row opplysning"> | ||
<div class="col">Beskrivelse av endring</div> | ||
<div class="col">{{ endringer }}</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |