Use in-table style for null states

This commit is contained in:
Mouse Reeve
2021-09-28 13:18:27 -07:00
parent c5746bbce0
commit 67a4b2713a
5 changed files with 13 additions and 16 deletions

View File

@ -42,9 +42,9 @@
</td>
</tr>
{% endfor %}
{% if not addresses.exists %}
<tr><td colspan="2"><em>{% trans "No IP addresses currently blocked" %}</em></td></tr>
{% endif %}
</table>
{% if not addresses.exists %}
<p><em>{% trans "No IP addresses currently blocked." %}</em></p>
{% endif %}
{% endblock %}