71 lines
1.5 KiB
Handlebars
71 lines
1.5 KiB
Handlebars
# {{get (get (get solution 0) "data") "name"}} - Solution Impact Document
|
|
{{#each solution}}
|
|
|
|
## Solution
|
|
|
|
{{#with (get data "solution") }}
|
|
Name: {{name}}
|
|
Problem Statement: {{problem_statement}}
|
|
Solution Id: {{identifier}}
|
|
{{/with}}
|
|
Program Id: {{get (get data "program") "identifier"}}
|
|
|
|
## Project
|
|
|
|
{{#each (get data "project")}}
|
|
- Name: {{name}}
|
|
- Identifier: {{identifier}}
|
|
- Budget: {{budget}}
|
|
- Guide: {{guide}}
|
|
{{/each}}
|
|
|
|
## Applications
|
|
|
|
| Name | ID | Type | Framework |
|
|
|------|----|------|-----------|
|
|
{{#each (get data "applications")}}
|
|
| {{name}} | {{identifier}} | {{type}} | {{framework}} |
|
|
{{/each}}
|
|
|
|
## Impact
|
|
|
|
The impact of the solution is rated as follows for each domain
|
|
|
|
| Domain | Impact | Commentary | Additional |
|
|
|--------|--------|------------|------------|
|
|
{{#each (get data "impacts")}}
|
|
| {{domain}} | {{impact}} | {{comment}} | {{additional_info}} |
|
|
{{/each}}
|
|
|
|
---
|
|
|
|
## Program
|
|
|
|
{{#with (get data "program") }}
|
|
The **{{name}}** program details are:
|
|
|
|
- Budget: {{budget}}
|
|
- Identifier: {{identifier}}
|
|
- Sponsor: {{get (get data "program") "sponsor"}}
|
|
- Domain: {{get (get data "program") "domain"}}
|
|
- Business case: {{get (get data "program") "guide"}}
|
|
|
|
| Phase | Timeframe | Commentary |
|
|
|-------|-----------|------------|
|
|
{{#each phases}}
|
|
| {{name}} | {{timeframe}} | {{comment}} |
|
|
{{/each}}
|
|
|
|
{{mdDiagram "overview_diagram.md" name}}
|
|
{{/with}}
|
|
|
|
---
|
|
|
|
## Stakeholders
|
|
|
|
| Name | Title | Role |
|
|
|------|-------|------|
|
|
{{#each (get data "stakeholders")}}
|
|
| {{name}} | {{title}} | {{role}} |
|
|
{{/each}}
|
|
{{/each}} |