Django中HTML页面合并两个表格

使用zip()函数可以实现两个表格的合并。
比如打算合并显示Person和Score两个表格。
在views.py中,视图函数中如下操作:

def  show_tables(request):
	person = Person.objects.all()
	score = Score.objects.all()
	person_score = zip(person,score)
	context = {'person_score':person_score}
	return render(request, '***/show_tables.html', context)

打开show_talbes.html。在里面写如下代码:

{% for person,score in person_table %}
<tr>
    <td>{{person.workday_date|date:'Y-m-d'}}td>
    <td>{{score.train_type1_time}}td>
% empty %}
    <td>没有数据td>
{% endfor %}
tr>

你可能感兴趣的:(Python)