[Answered ]-Send variable along within include block

2👍

The current context is available for the included template. You can use the “with” option to send any additional context.

{% include "marquee.html" with message="Hello" %}

and in your marquee.html template

<div>{{ message }}</div>

The include documentation is here

Leave a comment