Re: Loop Counter

2008-03-26 Thread Brian Armstrong
On Mar 26, 6:56 pm, DuncanM <[EMAIL PROTECTED]> wrote: > I have a template that looks like such: > > {% if object_list %} > > {% for menu in object_list %} > > {{ menu.name }} > Description: {{ menu.description }} > > > {% endfor %}

Loop Counter

2008-03-26 Thread DuncanM
I have a template that looks like such: {% if object_list %} {% for menu in object_list %} {{ menu.name }} Description: {{ menu.description }} {% endfor %} {% else %} No menus have been created yet, please check