mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
templates: Fix invalid <td> inside <tfoot> (missing <tr>).
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
460d63c4dc
commit
ce43111b03
@@ -33,9 +33,11 @@
|
||||
</tbody>
|
||||
{% if data.totals %}
|
||||
<tfoot class="activity-foot">
|
||||
{% for total in data.totals %}
|
||||
<td>{{ total }}</td>
|
||||
{% endfor %}
|
||||
<tr>
|
||||
{% for total in data.totals %}
|
||||
<td>{{ total }}</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</tfoot>
|
||||
{% endif %}
|
||||
</table>
|
||||
|
||||
@@ -143,8 +143,10 @@
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
<tfoot class="activity-foot">
|
||||
{% for total in totals %}
|
||||
<td>{{ total }}</td>
|
||||
{% endfor %}
|
||||
<tr>
|
||||
{% for total in totals %}
|
||||
<td>{{ total }}</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user