On Feb 17, 1:07 am, justin jools <[email protected]> wrote:
> I solved it after playing around for 3 hours it came to me: compare
> the make.id to model.dbforeignkey.id
Reading the FineManual(tm) would have saved you a lot of time...
<ul>
{% for make in make_list %}
<li>
{{ make.name }}
<ul>
{% for model in make.model_set.all %}
<li>{{ model.name }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
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.