# Template Filling Example

See the [template engine documentation](https://jinja.palletsprojects.com) for endless and exotic template possibilities.

## Full Element Listing Table

| Identifier | Type | Description |
|------------|------|-------------|
{% for element in sbdl -%}
{{element}} | {{sbdl[element].type}} | {{sbdl[element].type}}
{% endfor %}

## Full Element Listing Text

{% for element in sbdl %}
There is an element called “{{element}}“ of type “{{sbdl[element].type}}”.
{% endfor %}
