How to uninstall django? What is extends ?
Jul 012009

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 %}

Posted by weboom at 11:50 pm Tagged with: , ,

Leave a Reply

(required)

(required)

Switch to our mobile site
Top Footer