[Django]-Assign variables to child template in {% include %} tag Django

288👍

Like @Besnik suggested, it’s pretty simple:

{% include "subject_file_upload.html" with form=form foo=bar %}

The documentation for include mentions this. It also mentions that you can use only to render the template with the given variables only, without inheriting any other variables.

Thank you @Besnik

👤Vor

Leave a comment