On Feb 17, 1:07 am, justin jools <justinjo...@googlemail.com> 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 django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to