13 lines
377 B
Django/Jinja
13 lines
377 B
Django/Jinja
|
|
trust-anchors {
|
|
{% filter indent(bind9_config_indent, true) %}
|
|
{% for anchor in item.trust_anchors if item.trust_anchors is iterable %}
|
|
{{ (anchor.name | string) -}}
|
|
{{ (' ' + anchor.type) -}}
|
|
{{ (' ' + anchor.flags | string) -}}
|
|
{{ (' ' + anchor.protocol | string) -}}
|
|
{{ (' ' + anchor.algorithm | string) -}}
|
|
{{ (' "' + anchor.key + '"') -}};
|
|
{% endfor %}
|
|
{% endfilter %}};
|