Django - “Include” a block in several templates? Template tag? Something else?

前端 未结 2 480
小鲜肉
小鲜肉 2020-12-29 10:21

I have a little statistics block that I want to be available in several places: the profile page of a user, and a search page with a list of users.

What would be th

2条回答
  •  轮回少年
    2020-12-29 11:03

    You can write a custom template tag, which can render a specific template. Refer Inclusion tags.

    From the link: Another common type of template tag is the type that displays some data by rendering another template.

提交回复
热议问题