I am new to Django. It throws such an error:
File "/home1/monkevco/django/django_src/django/template/defaulttags.py", line 418, in render
raise e
NoReverseMatch: Reverse for '' with arguments '()' and keyword arguments '{}' not found.
My urls.py looks like:
urlpatterns = patterns('',
url(r'^accounts/register/$',
register,
{ 'backend': 'lbregistration.backends.simple.SimpleBackend' },
name='registration_register'),
url(r'^user/(?P<user_id>\d+)/$', profile, name='user_profile'),
url(r'^accounts/avatar/', include('simpleavatar.urls')),
url(r'^accounts/', include('registration.backends.default.urls')),
url(r'^attachments/', include('attachments.urls')),
url(r'^captcha/', include('captcha.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
url(r'^', include('lbforum.urls')),
)
Update: Django Version 1.5
Input Url: http://monkev.com
Error Location:
<div id="brd-head" class="gen-content">
<p id="brd-access"><a href="#brd-main">Skip to forum content</a></p>
<p id="brd-title"><a href="{% url lbforum_index %}">{{ LBFORUM_TITLE }}</a></p>
<p id="brd-desc">{{ LBFORUM_SUB_TITLE }}</p>
</div>
Please help me figure it out. Thank you very much.
Update:
in Debug page:
Request URL: http://monkev.com/
Django Version: 1.5
Exception Type: NoReverseMatch
Exception Value:
Reverse for '' with arguments '()' and keyword arguments '{}' not found.
...
...
'/home1/monkevco/python/lib/python2.7/site-packages/Django-1.4.1-py2.7.egg',
I invokes Django 1.4.1 in python path, but why the running version is Django 1.5? How to force it to 1.4.1?
LBForumat github.com/vicalloy/LBForum – Skyler Aug 20 '12 at 10:32http://monkev.com– Skyler Aug 20 '12 at 10:56