Я использую Bootstrap для таблицы, и справа добавляется пустой столбец (см. Скриншот).Это странно, особенно потому, что я использую его для другой таблицы, и с этим все в порядке ... но этот решил сделать то, что хочет ^^
Вот таблица HTML:
<table class="table table-bordered table-hover table-responsive" style="text-align: center">
<thead>
<tr>
<th>{% trans "Issue type" %}</th>
<th>{% trans "State" %}</th>
<th>{% trans "Date" %}</th>
<th>{% trans "New comment" %}</th>
</tr>
</thead>
{% if issues|length == 0 %}
<tr class="empty-row">
<td class="no-issue" colspan="3">{% trans "none(f)" %}</td>
</tr>
{% endif %}
{% for issue in issues %}
<tr class="issue">
<td><a href="{% url 'customer_support:comment_issue' issue.id %}">
{% if issue.issue_type %}{{ issue.issue_type }}{% else %}{{ issue.other }}{% endif %}
</a></td>
<td>{% if issue.resolved %}
<span class="badge badge-success">{{ issue.get_state_display }}</span>
{% else %}
<span class="badge badge-warning">{{ issue.get_state_display }}</span>
{% endif %}
</td>
<td>{{ issue.date | date }}</td>
<td>{% if issue.has_notifications %}
<span class="badge badge-warning">{% trans 'New' %}</span>
{% else %}
{% endif %}</td>
</tr>
{% endfor %}
</table>
Иснимок экрана и пустой столбец справа:
РЕДАКТИРОВАТЬ: