我已按照https://django-tables2.readthedocs.io/en/latest/pages/tutorial.html创建了一个表格。我设法重新调整了表格:
tables.py:
import django_tables2 as tables
from .models import Person
class PersonTable(tables.Table):
class Meta:
model = Person
attrs = {'class': 'paleblue','width':'300%'}
people.html:
{% load render_table from django_tables2 %}
{% load static %}
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="{% static 'django_tables2/them/paleblue/css/screen.css' %}" />
</head>
<body>
{% render_table table %}
</body>
</html>
我看不到任何更改文档底部边框大小的选项? 或者,我试图更改screen.css以删除边框,但更改无效。单击查看页面源时,即使我重命名screen.css,该链接也处于活动状态。
答案 0 :(得分:0)
您应该围绕表格和default template has class table-container
的分页调整容器大小。
您应该使用一些CSS来扩大容器范围,例如
<style>
.table-container {
width: 300%;
}
</style>
您应该从表定义中删除width属性,因为它会使表格成为容器的3倍。