mirror of https://github.com/dapr/docs.git
28 lines
755 B
HTML
28 lines
755 B
HTML
{{- $groups := dict
|
|
" Generic" $.Site.Data.components.configuration_stores.generic
|
|
"Microsoft Azure" $.Site.Data.components.configuration_stores.azure
|
|
|
|
}}
|
|
|
|
{{ range $group, $components := $groups }}
|
|
<h3>{{ $group }}</h3>
|
|
<table width="100%">
|
|
<tr>
|
|
<th>Component</th>
|
|
<th>Status</th>
|
|
<th>Component version</th>
|
|
<th>Since runtime version</th>
|
|
</tr>
|
|
{{ range sort $components "component" }}
|
|
<tr>
|
|
<td><a href="/reference/components-reference/supported-configuration-stores/{{ .link }}/">{{ .component }}</a>
|
|
</td>
|
|
<td>{{ .state }}</td>
|
|
<td>{{ .version }}</td>
|
|
<td>{{ .since }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
{{ end }}
|
|
|
|
{{ partial "components/componenttoc.html" . }} |