designs/solutions/test/solution-basic.md.hbs

36 lines
651 B
Handlebars
Raw Normal View History

2026-03-08 11:06:05 +00:00
# {{get (get (get solution 0) "data") "name"}} - Solution Design 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}}