django-components/tests/templates/block_in_slot_in_component.html
2024-05-02 22:24:49 +02:00

17 lines
382 B
HTML

{% load component_tags %}
<!DOCTYPE html>
<html lang="en">
<body>
{% component "slotted_component" %}
{% fill "header" %}{% endfill %}
{% fill "main" %}
{% slot "body" %}
Helloodiddoo
{% block inner %}
Default inner
{% endblock %}
{% endslot %}
{% endfill %}
{% endcomponent %}
</body>
</html>