[Answered ]-Django 1.6 Adding to object in ListView's object_list

2👍

You might use itertools.chain(*iterables).

Then, you can create two different querysets and join them together in object_list.

Check this post.

Leave a comment