What is block ?

It is about template inheritance.

For example, assume that base.html has

{% block yourblock %}

Here, your block content in base.html

{% endblock %}

———-

In base_child.html can have their own version of yourblock content

{% extends “base.html” %}

{% block yourblock %}

Here, the base.html content can be overwritted with this.

{% endblock %}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.