mirror of
https://github.com/django-components/django-components.git
synced 2025-08-18 21:20:14 +00:00
6 lines
196 B
HTML
6 lines
196 B
HTML
{% load component_tags %}
|
|
{% if branch == 'a' %}
|
|
<p id="a">{% slot 'a' %}Default A{% endslot %}</p>
|
|
{% elif branch == 'b' %}
|
|
<p id="b">{% slot 'b' %}Default B{% endslot %}</p>
|
|
{% endif %}
|