The elegant way to fetch the the latest 10 messages and reserves them in python is:
latest_messages = list(Messages.objects.filter(since=since).order_by('-id')[:10])[::-1]
and the front end will get in ascending order.