You have already completed these exercises!
Do you want to take them again?
You completed the DJANGO Include Exercises from W3Schools.com
Share on:
What is a corrext syntax for sending variables into a template via the include tag?
{% include 'menu.html' with fname='Jim' %}
{% include 'menu.html' with context = {'fname'='Jim'} %}
{% include 'menu.html' context = {'fname' = 'Jim'} %}