On Jun 25, 2006, at 1:13 PM, Steven Armstrong wrote:


If there are more then 5 references I'ld like to show a 'more' link that 
leads to a list of all references.

Something like (pseudocode):
{% if reference_set.count > 5 %}
<a href="">more</a>
{% endif %}


Anybody know how to do that?
Or am I missing something obvious?


Not sure if it works, but off the top of my head, what I would try is this:

{% if reference_set.all|slice:"5:" %}

should return true if the slice produces anything past the 5th element.

Don


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to