stevencoding / django-basic-apps

Automatically exported from code.google.com/p/django-basic-apps
0 stars 0 forks source link

NameError in basic.remarks.views.py #6

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Add basic.remarks to INSTALLED_APPS and sync db
2. Add (r'^remarks/', include('basic.remarks.urls')) to urlpatterns
3. Point browser to http://<site url>/remarks/

What is the expected output? What do you see instead?
List of remarks should be displayed. "NameError at /remarks/ -- global name
'list_detail' is not defined" is displayed instead.

What version of the product are you using? On what operating system?
Release 0.6

Please provide any additional information below.
Fix: Add "from django.views.generic import list_detail" to remarks.views

Original issue reported on code.google.com by tonyg...@gmail.com on 16 Jul 2008 at 6:10

GoogleCodeExporter commented 8 years ago
Thanks. This is now fixed in r53.

Original comment by npbor...@gmail.com on 16 Jul 2008 at 7:33