You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed the last version of Pinax and I'm getting an error in the admin page. If I try to access /admin/blog/post/ I get aNoReverseMatch u'pinax_blog' is not a registered namespace. I only get this error in the /post/ sections, the rest are working fine.
I have the following code:
At settings.py
INSTALLED_APPS = (
...
'pinax.blog',
...
)
at urls.py url(r"^blog/", include("pinax.blog.urls")),
I have also done a python manage.py migrate.
Any idea of whats going on? The rest of the sections work perfectly.
Cheers
The text was updated successfully, but these errors were encountered:
Thanks @paltman!
The documentation is outdated, as the namespace part is missing in the installation instructions. I can make you a pull request with the fix
Hi,
I have installed the last version of Pinax and I'm getting an error in the admin page. If I try to access /admin/blog/post/ I get a
NoReverseMatch u'pinax_blog' is not a registered namespace
. I only get this error in the /post/ sections, the rest are working fine.I have the following code:
At settings.py
at urls.py
url(r"^blog/", include("pinax.blog.urls")),
I have also done a
python manage.py migrate
.Any idea of whats going on? The rest of the sections work perfectly.
Cheers
The text was updated successfully, but these errors were encountered: