Answer the question
In order to leave comments, you need to log in
Can you help me understand inheritance in Django?
Just read the tutorials on django girls and started reading the documentation. Confused with template inheritance!
through views.py I render base.html
def blog(request):
return render(request, 'base.html', context={})
<body>
{% block contant %}
Место для постов
{% endblock contant %}
</body>
{% extends "base.html" %}
{% block contant %}
Сами посты
{% endblock contant %}
, but there is no inheritance. Complete project
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question