Private items should still be listed on the compliance page — only items with visibility "NONE" should be excluded. Also add missing trailing newline in the template file. Signed-off-by: Bryan Frimin <bryan@getprobo.com>
41 lines
1.3 KiB
Cheetah
41 lines
1.3 KiB
Cheetah
# {{ .OrgName }} — Compliance
|
|
{{ if .Description }}
|
|
{{ .Description }}
|
|
{{ end }}{{ if .Details }}
|
|
{{ range .Details }}- **{{ .Label }}**: {{ .Value }}
|
|
{{ end }}{{ end }}{{ if .Frameworks }}
|
|
## Compliance Frameworks
|
|
|
|
{{ range .Frameworks }}- {{ .Name }}{{ if .Description }}: {{ .Description }}{{ end }}
|
|
{{ end }}{{ end }}{{ if .Documents }}
|
|
## Documents
|
|
|
|
| Title | Type |
|
|
|-------|------|
|
|
{{ range .Documents }}| {{ cell .Title }} | {{ cell .Type }} |
|
|
{{ end }}{{ end }}{{ if .Audits }}
|
|
## Audits
|
|
|
|
| Name | Framework | Valid From | Valid Until |
|
|
|------|-----------|------------|-------------|
|
|
{{ range .Audits }}| {{ cell .Name }} | {{ cell .Framework }} | {{ .ValidFrom }} | {{ .ValidUntil }} |
|
|
{{ end }}{{ end }}{{ if .Vendors }}
|
|
## Subprocessors
|
|
|
|
| Name | Category | Countries | Website |
|
|
|------|----------|-----------|---------|
|
|
{{ range .Vendors }}| {{ cell .Name }} | {{ cell .Category }} | {{ cell .Countries }} | {{ cell .Website }} |
|
|
{{ end }}{{ end }}{{ if .References }}
|
|
## References
|
|
|
|
| Name | Description | Website |
|
|
|------|-------------|---------|
|
|
{{ range .References }}| {{ cell .Name }} | {{ cell .Description }} | {{ cell .Website }} |
|
|
{{ end }}{{ end }}{{ if .ExternalLinks }}
|
|
## External Links
|
|
|
|
| Name | URL |
|
|
|------|-----|
|
|
{{ range .ExternalLinks }}| {{ cell .Name }} | {{ cell .URL }} |
|
|
{{ end }}{{ end }}
|