add numbers to template

This commit is contained in:
psy 2023-01-27 18:34:47 +01:00
parent 64530f3fe8
commit da7a56beca
No known key found for this signature in database
GPG key ID: 30546501FF65B1A5

View file

@ -3,6 +3,8 @@
{{ key }} = "{{ value }}";
{%- elif value is boolean -%}
{{ key }} = {{ value|lower }};
{%- elif value is number -%}
{{ key }} = {{ value }};
{%- elif value is mapping -%}
{{ key }} {
{% for key, value in value.items() %}