36 lines
651 B
Handlebars
36 lines
651 B
Handlebars
# {{get (get (get solution 0) "data") "name"}} - Solution Impact Document
|
|
|
|
{{#each solution}}
|
|
|
|
## Solution
|
|
|
|
Name: {{get (get data "solution") "name"}}
|
|
|
|
Problem Statement: {{get (get data "solution") "problem_statement"}}
|
|
|
|
## Project
|
|
|
|
{{#each (get data "project")}}
|
|
- Name: {{name}}
|
|
- Budget: {{budget}}
|
|
- Guide: {{guide}}
|
|
{{/each}}
|
|
|
|
|
|
## Applications
|
|
|
|
| Name | Type | Framework |
|
|
|------|------|-----------|
|
|
{{#each (get data "applications")}}
|
|
| {{name}} | {{type}} | {{framework}} |
|
|
{{/each}}
|
|
|
|
## Stakeholders
|
|
|
|
| Name | Title | Role |
|
|
|------|-------|------|
|
|
{{#each (get data "stakeholders")}}
|
|
| {{name}} | {{title}} | {{role}} |
|
|
{{/each}}
|
|
{{/each}}
|