1👍
You can use the default_if_none
filter, so: {{post.root1|default_if_none:""}}
Alternatively, you can check for each value specifically
{% if post.root1 %} {{post.root1}} {% endif %}
👤NS0
Source:stackexchange.com
1👍
You can use the default_if_none
filter, so: {{post.root1|default_if_none:""}}
Alternatively, you can check for each value specifically
{% if post.root1 %} {{post.root1}} {% endif %}