How do you insert a template into another template?

前端 未结 4 886
猫巷女王i
猫巷女王i 2020-12-04 16:18

I have a very basic template (basic_template.html), and want to fill in the with data formatted using another partial template. The basic_template.html might contain severa

4条回答
  •  -上瘾入骨i
    2020-12-04 17:02

    I just wanted to add differences of extend and include. Both template and include can use models inserted in current app. Template is for global usage by your any app. Include is for use in certain apps. For ex: you want to insert Image Slider to your homepage and about page but nowhere else. You can create Slider app with its own model for convenience and import its model and include in that pages. If you used template for this example, you would create 2 templates one with slider and everything else other template have.

提交回复
热议问题