我对Django很新。我正试图在表格中添加CSS样式
{% render_table table %}
正在运行。
代码如下所示:
views.朋友:
def myTable(request):
table = myDataTable.objects.all()
filter = request.GET.get('q')
startDate = request.GET.get('sd')
endDate = request.GET.get('ed')
if mail:
table = table.filter(Q(filter__icontains=filter) &
Q(evaluation_date__range=[startDate, endDate])).distinct()
else:
table = table.filter(Q(evaluation_date__range=[startDate, endDate])).distinct()
table = TableView(table)
RequestConfig(request).configure(table)
return render(request, 'myapp/myTable.html', {'table': table})
tables.朋友:
class TableView(tables.Table):
class Meta:
model = myDataTable
template = 'django_tables2/bootstrap.html'
myApp.html
{% load staticfiles %}
{% load render_table from django_tables2 %}
....
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
....
<body>
{% render_table table %}
在project/static/css/
我有一个自定义样式文件customstyle.css
,但没有办法使渲染表使用该样式。
请你帮助我好吗?
样式化由django-tables2生成的表是explained in the documentation。您可以使用默认的类属性,也可以指定自定义属性。
要使用自定义样式表customstyle.css
(使用上述类),必须将其包含在模板中。 django-tables2不适合你,但你可以从django tutorial part 6学习如何做到这一点:
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}" />
您必须根据项目中的位置调整名称和路径。