I am trying to create some tables for my application using django-tables2 and running into some difficulties. I am using Python 2.7, and Django 1.7. I am following the tutorial, and I ran into problems.
I reach the point where I need to create a Table class for customization. However, whenever I do so, I get the following error:
Expected table or queryset, not 'str'.
After doing some research it looks like I am using an older version of django-tables2. However, I just installed it yesterday using pip install django-tables2
and updated it a half an hour ago. Any idea how I can get django-tables2 to work properly?
EDIT - Problem solved. I was using {% render_table people %}
instead of {% render_table table %}