Sven Richter wrote:
> when i try to call:
> {% url profile_myiq argument %}

> NoReverseMatch: Reverse for 'youriq.profile_myiq' with arguments '('',)' and 
> keyword arguments '{}' not found.

>   (r'^(?P<name>\w+)/$', 'user', {} 'profile_myiq'),

The error indicates you were providing either empty string, '', or the 
litteral characters '',  (not sure the formating, probably is the former)

Neither of which match the regex for arg "name".  "\w+" matches 1 or 
more word characters.

So, I'm guessing your argument in url tag is wrong.

{% url profile_myiq argument %}


-- 
Norman J. Harman Jr.
Senior Web Specialist, Austin American-Statesman
___________________________________________________________________________
Get off the sidelines and huddle up with the Statesman all season long
for complete high school, college and pro coverage in print and online!

--~--~---------~--~----~------------~-------~--~----~
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