Skip to content

Instantly share code, notes, and snippets.

@mthri
Created July 4, 2020 16:55
Show Gist options
  • Save mthri/946434e30ae9fd1f55c848b4c5302d53 to your computer and use it in GitHub Desktop.
Save mthri/946434e30ae9fd1f55c848b4c5302d53 to your computer and use it in GitHub Desktop.
send data to base template in django

If you need to use data in base template the was sent to child template use block.super in some tag

{% block tmp %}
    {{ block.super }}
{% endblock %}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment