[Answered ]-Combining multiple Django Views/Templates

2👍

I think you need to create a custom template tag that in this case called: Inclusion tags

0👍

You can look into writing a custom template tag for the tags. That way the tag logic can stay in the right application.

👤tback

0👍

It depends how these different apps render the templates. If they just render the template without extending from a base template you could simply use AJAX to load all the content into your homepage.

If not, then there is no other way than writing a custom solution for this. This could be an extension to your views, a custom template tag as already mentioned or something else according to what exactly you need.

Leave a comment