Tried going about this another way:
In the template:

    {% url orgs.views.org org.type.slug, org_slug=org.slug %}

That gets me this error message:

    Don't mix *args and **kwargs in call to reverse()!

But how is that different from this example in the Django doc?

http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url

    {% url path.to.some_view arg1,arg2,name1=value1 %}

"The first argument is a path to a view function in the format
package.package.module.function. Additional arguments are optional and
should be comma-separated values that will be used as positional and
keyword arguments in the URL. All arguments required by the URLconf
should be present."
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to