Hi:) I have got a small problem with template double extends system. I have got a scheme:
base.html ---> index.html ---> something.html
When I log in to the site I have got access to all invisible blocks (invisible blocks for anonymous users) like:
{% if user.is_superuser %}
blabla
{% endif %}
So "blabla" is visible for me, because I am a superuser and I'm logged in. It works fine in base.html, index.html but it doesn't work in something.html. Why?? Simple it looks like user: 'superuser' is log out.