mirror of https://github.com/pulumi/pulumi.git
19 lines
487 B
Cheetah
19 lines
487 B
Cheetah
{{ define "enums" }}
|
|
|
|
{{- range $lang, $enums := . }}
|
|
|
|
<div>
|
|
<pulumi-choosable type="language" values="{{ print $lang }}">
|
|
<dl class="tabular">
|
|
{{- range . -}}
|
|
<dt>{{- htmlSafe .DisplayName -}}</dt>
|
|
<dd>{{- htmlSafe .Value }}{{- if .Comment }}{{- markdownify .Comment -}}{{ end -}}{{- if .DeprecationMessage }}<p class="property-message">Deprecated: {{- markdownify .DeprecationMessage -}}</p>{{- end -}}</dd>
|
|
{{- end -}}
|
|
</dl>
|
|
</pulumi-choosable>
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|