{% include %} vs {% extends %} in django templates

前端 未结 3 1965
野的像风
野的像风 2020-12-01 09:09

When particularly extend template and when to use include ? Is include of any use with content like user profile section (like about me in the corner of our site) ?

3条回答
  •  抹茶落季
    2020-12-01 09:46

    See about django template inheretance.

    Extends sort of 'includes' the parent template and then can overwrite parts of it for different functionality.

    Include does a simple include rendering a template in a current context.

提交回复
热议问题