PythonistL wrote: > To explain: > Let's suppose we have a command > > HistoryList=historys.get_list(id__exact='2',order_by=['-PostedDate']) > > that command extracts a few records and from them I would like to use > for further processing all without the first or last record. > How can I do that in Django version 0.91? > Thank you for help > L.
I'm rusty on 0.91 but I think you could do it in two calls with: count=historys.get_count(id__exact='2',order_by=['-PostedDate']) HistoryList=historys.get_list(id__exact='2',order_by=['-PostedDate'], limit=count-2, offset=1) Or in the post-mr world: HistoryList=history.objects.filter(id='2').order_by('-PostedDate')[1:-1] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---