what2watch/templates/macros.html
2023-06-08 15:45:34 -07:00

10 lines
135 B
HTML

{% macro get_or_default(val, def) %}
{% match val %}
{% when Some with (v) %}
{{v}}
{% else %}
{{def}}
{% endmatch %}
{% endmacro %}