Adrian, Thank you for your reply. I still have problems with template inheritance Can you please help me with the following?
I have the Index1.html ##################Index1.html############# {% extends "board/test" %} {% block title %}Tittle from Index.html {% endblock %} This is a text from Index1.html {%block mine%}Hello from Index1{%endblock%} Text at the end ################## and a test.html file ###################test.html#################### <head> <title> {% block title %}Tittle from test.html{% endblock %} </title> </head> <body> This is a text from test.html {%block mine%}Hello from test.html {%endblock%} </body> ######################## I use this view with the template ############ def TestTemplate(request): return render_to_response('board/Index1') ############ I would expect that the title should be Tittle from test.html but it shows still Tittle from Index.html Why? Also no text( except that in block tags in Index1.html) is printed.Why? Thank you for help Rregards, la.