Let’s say I have two different applications with varying HTML. I can do basic code to conditionally show…
{% if application.name == "APP 1" %}
<HTML MARKUP>
{% endif %}
{% if application.name == "APP 2" %}
<HTML MARKUP OF APP 2>
{% endif %}
That just feels weird and a hacky work-around. Is there a way to conditionally include templates?