Hi group, I'm new - just worked thgough the tutorial. In part 4 about the use of generic views I've got a problem - I can't import ListView and DetailView:
>>> from django.views.generic import DetailView Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: cannot import name DetailView >>> from django.views.generic import ListView Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: cannot import name ListView I'm on the newest version of django: first tried with version 1.2.3, then I upgraded to 1.3 alpha - same problem. Any clues? thanks, stephan ps: other than that it's a great tutorial! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

