Re: transition part of particular template to another template

2019-10-14 Thread Motaz Hejaze
you need a link to refer to the other view ( html page ) On Sun, Oct 13, 2019 at 6:20 PM mohamed khaled < mohamed.khaled33...@gmail.com> wrote: > I want to take the result from* detail.html* to *list.html * > > in *detail.html* > > > {% with comments.count as count %} > {{count}}

transition part of particular template to another template

2019-10-13 Thread mohamed khaled
I want to take the result from* detail.html* to *list.html * in *detail.html* {% with comments.count as count %} {{count}} Comment{{count|pluralize}} {% endwith %} in *list.html * I want to add the result of *detail.html *only I don't need to render all rest of html I just need this block.