-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkdown.tmpl
34 lines (24 loc) · 893 Bytes
/
markdown.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# EZ-IPAM Generated Summary
This document was generated by [EZ-IPAM](https://github.com/plumber-cd/ez-ipam).
Please, do not modify this document manually.
## Networks
{{- $networksDisplayNames := .NetworksDisplayNames }}
{{- $networksDataIndex := .NetworksDataIndex }}
{{- $networksData := .NetworksData }}
{{- $networksOpts := .NetworksOpts }}
{{- range $ID := .NetworksIndex }}
### Network Details for `{{ index $networksDisplayNames $ID }}`
| Property | Value |
|----------|-------|
{{- range $key := index $networksDataIndex $ID }}
{{- if eq $key "Description" }}
{{- continue }}
{{- end }}
| **{{ $key }}** | `{{ index (index $networksData $ID) $key }}` |
{{- end }}
{{- if not (eq (index (index $networksOpts $ID) "AllocationMode") 0) }}
#### Description for `{{ index $networksDisplayNames $ID }}`
{{ index (index $networksData $ID) "Description" }}
{{- end }}
---
{{- end }}