I just found on that having underscores in your view names seems to
make some regex stuff for django go funky. Try changing your view
names to not have underscores so maybe viewAboutPage or something.
Good luck :)

On Apr 28, 6:06 pm, Julián C. Pérez <jcp...@gmail.com> wrote:
> hi everyone
> i need some help over here... please!
> i don't know what it's wrong...
>
> the url i'm trying to get around is:http://proyName/about/
>
> the error:
> "Reverse for 'proyName.view_aboutPage' with arguments '()' and keyword
> arguments '{}' not found."
>
> in a template, the dispatcher of the error:
> # template.html
> ...
> <a href="{% url view_aboutPage %}">a link to the 'about' page<a>
> ...
>
> i have a general urls.py file who looks like:
> # proyName/urls.py
> ...
> url(r'^/', include('proyName.package.appName.urls')),
> ...
> where appName includes the 'view_aboutPage' view in its views.py
> 'package' it's just a folder to wrap up all the available apps
>
> and also i have a urls.py file in appName, and it is:
> # proyName/package/appName/urls.py
> ...
> url(r'^about/$', 'view_aboutPage', name='view_aboutPage'),
> ...
>
> please... help!
> what is it wrong in there??
> thank u all
> bye!
--~--~---------~--~----~------------~-------~--~----~
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 
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