On 06/26/06 07:26, Ivan Sagalaev wrote: > Don Arbow wrote: >> Not sure if it works, but off the top of my head, what I would try is this: >> >> {% if reference_set.all|slice:"5:" %} > > Not exactly this. Here a DB (Postgres at least) will complain that it > can't set OFFSET without LIMIT. This would work: > > {% if reference_set.all|slice:"5:6" %} >
Using sqlite, django also complained with AssertionError 'offset' is not allowed without 'limit'. Ivan's variation does the trick. Thanks to both of you :) cheers Steven --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---