On Sep 12, 8:32 am, Daniel Roseman <[EMAIL PROTECTED]>
wrote:
> You need the ifchanged tag:
>
> <table>
> {% for items in list %}
> <tr><td>{% if changed items.0 %}{{ items.0 }}{% endifchanged %}</
> td><td>{{ items.1 }}</td></tr>
> {% endfor %}
> </table>
Thats what I went with!
Looks like it would use less processor cycles to do the same thing.
Much Thanks!
This is what I'm currently using in my List template:
{% block content %}
<h1>{{ systype }}</h1>
{% for systems in sys %}
{% ifchanged systems.manufacturer %}</
ul><h3>{{ systems.manufacturer.name }}</h3><ul>{% endifchanged %}
<li>{{ systems.name }}</li>
{% endfor %}
</ul>
{% endblock %}
Not sure how to escape that first </ul> though... :(
Lance
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---