I\'d like to use an {% include page.html %} tag in my Django template, and construct the value of page.html dynamically.
{% include page.html %}
page.html
Is there any way to do
You can concatenate plain strings and variables right in your templates using with tag and add filter, see this SO answer.
with
add