django jinja2 template code example
Example 1: jinja2 include template
{% include "to_be_included.html" with context %}
Example 2: jinja2 template import html with as
{% from 'forms.html' import input with context %}
{% include 'header.html' without context %}