I have 3 Django templates:
base.html
<title>{% block title %} SITE NAME {% endblock %}</title>
default.html
{% extends "base.html" %}
{% block title %} {{ block.super }} - SECTION NAME {% endblock %}
main.html
{% extends "default.html" %}
{% block title %} {{ block.super }} {% endblock %}
I'd like to get SITE NAME in template main.html i.e. the content of the parent of the parent block. Something like
{{ block.super.super }}
Is this possible?