我是Django和Python的新手,我正在尝试在django 1.8.4中使用django-tables2 1.0.4。
我试图显示非表格数据并显示每个表格行但没有数据。
这是我展示的内容: 表统计enter image description here
我的代码:
# tables.py
class TotalTable(tables.Table):
tbl = tables.Column(orderable=True,verbose_name='Table Name')
tbl_cnt = tables.Column(orderable=True, verbose_name='Table Count')
class Meta:
# add class="paleblue: to <table> tag
attrs = {"class": "paleblue", "type": "dict"}
fields = ('tbl', 'tbl_cnt')
sequence = fields
order_by = ('tbl',)
# views.py
class Totals(View):
template_name = 'lib/totals.html'
counts = {'Authors': Author.objects.all().count(),
.........etc......
'Titles': Title.objects.all().count()
}
table = TotalTable(counts)
def get(self, request):
RequestConfig(request).configure(self.table)
return render(request, self.template_name, {'table': self.table})
#urls.py
urlpatterns = [
url(r'^totals/$', Totals.as_view()),
]
# totals.html
{% extends "lib/base.html" %}
{% load render_table from django_tables2 %}
{% block sidebar %}
{% endblock %}
{% block content %}
<h1>Table Statistics</h1>
{% render_table table %}
{% endblock %}
而不是表格名称和表格数量,我得到了&#39; - &#39;。
答案 0 :(得分:0)
因此,阅读此页面时,数据格式似乎是错误的。
https://django-tables2.readthedocs.org/en/latest/pages/table-data.html
在分配计数dict后立即尝试将其插入行中
module.exports = RecipePage;