我是django和django_tables2的新手。我正在嘗試在我的應用程序視圖中使用django_tables2來創建表格。我想利用這個link作爲tutorial.In我IndexView我有以下幾點:Django_tables2 data_list
在我view.py
class IndexView(generic.ListView):
model = Post.objects.all()
template_name = 'post/index.html'
table = Post(data_list)
RequestConfig(request).configure(table)
在我的index.html:
{% load render_table from django_tables2 %}
{% block content %}
<h1>Posts</h1>
{% render_table post_list %}
{% endblock %}
我出現以下錯誤:
name 'data_list' is not defined
如何導入和使用data_list?
感謝您的任何幫助。
我使用該代碼得到以下錯誤「'return'outside function」。 –
對不起我的壞。我認爲在這種情況下,你不應該使用通用視圖,因爲它們不會給你帶來任何好處。所以只要定期看。 –