On 21 déc, 15:01, Олег Корсак <[email protected]> wrote: > hello. I have a question about using multiple apps on the same page > (template). > > Lets imagine a template with two blocks > > {% block left_side %}{% endblock %} > and > {% block right_side %}{% endblock %} > > in left_side block there is a voting app for example and in the > right_side block there is a newsfeed. How to put them together on one > page? I mean if there is a call to voting app view, then it will draw > itself for sure, but how to output newsfeed when calling voting app view? >
That's what custom templatetags are for. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

