This is a bit of a stumper!I don't see any big glaring issues. A couple of housekeeping things: Is there data in the table? Are you certain that you are using the correct template?
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/b84e3f59-d0da-40c4-a942-81f43861a6f1%40googlegroups.com.
You've defined your class-based view as a function:
def PozoList(ListView):
You should be defining it as a class:
class PozoList(ListView):
And you should be calling the to_view() method for the PozoList class from your urls.py.
Please post your urls.py and any traceback and error messages you are receiving.
-James
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALn3ei2yLaOBAc1MMocYCs21kbM1dES6HTZxm-nBs3kUDQ-Hhw%40mail.gmail.com.