On Fri, Sep 17, 2010 at 12:24 AM, Carl Karsten <c...@personnelware.com> wrote: > Is there a better way to do: > > {% url admin:main_episode_changelist %}?show__id__exact={{show.id}}
Django doesn't include the GET arguments as part of the URL dispatch process, so the {% url %} tag matches the body of the URL; if you want to pass in GET arguments, you then need to provide them as additional URL info in your template. You're asking for a 'better' way, but you haven't said why the existing way isn't acceptable. AFAICT, it should work as you describe -- what exactly is the nature of your objection? Yours, Russ Magee %-) -- 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.