>   For example at the template level...
> 
>     {% for news in latest_news_list last 10 %}
> 
>   I'm hoping this would grab the latest 10 objects in the
> latest_news_list. Does anyone know the best way to do this, or have
> some examples set up I could read over?

Looks like you want the slice filter[1]:

{{ for news in latest_news_list|slice:":10" }}

or

{{ for news in latest_news_list|slice:"-10:" }}

assuming latest_news_list is sorted by date.

-tim

[1]
http://www.djangoproject.com/documentation/templates/#slice







--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to