Hi I've got the following in my template:
{% if reference_set.count %} <ul> {% for reference in reference_set.all|slice:":5" %} <li><a href="{{ reference.website }}">{{ reference.name }}</a></li> {% endfor %} </ul> {% endif %} 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="/path/to/references">more</a> {% endif %} Anybody know how to do that? Or am I missing something obvious? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---