我有一张这样的桌子:
<table class="table table-bordered">
<thead>
<tr>
<th></th>
<th>Project Name</th>
<th>Tape-ID</th>
<th>Video Type</th>
<th>Date Created</th>
<th>Director</th>
<th>Camera Person</th>
<th>Editor</th>
<th>Tag</th>
</tr>
</thead>
<tbody>
{% load endless %}
{% paginate 8 a %}
{% for choice, i in a %}
<tr>
<td><input type="checkbox" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" onchange="checkChecked()" /></td>
<td>{{ choice.name }}</td>
<td>{{ choice.tape_id }} </td>
<td>{{ choice.video_type }}</td>
<td>{{ i }}</td>
<td>{{ choice.director }}</td>
<td>{{ choice.cameraman }}</td>
<td>{{ choice.editor }}</td>
<td>{{ choice.tag1 }}, {{ choice.tag2 }}, {{ choice.tag3 }}, {{ choice.tag4 }},
{{ choice.tag5 }}, {{ choice.tag6 }}, {{ choice.tag7 }}, {{ choice.tag8 }},
{{ choice.tag9 }}, {{ choice.tag10 }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
这些变量{{ choice...}}
可能有也可能没有价值。虽然它是顺序的。最多 3 的变量可以有值,并且在 3 之后没有任何值。如果没有值,它会像这样:
water, pollution, hello, , , , , ,
如果没有价值,我不想显示逗号。我怎样才能做到这一点?