notifications: update markup for proper spacing (#34243)

This commit is contained in:
Frédéric Péters 2019-06-23 13:15:09 +02:00
parent 5b4598c901
commit 26589e80a1
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,6 @@
{% block cell-content %}
<h2>{% trans "Notifications" %}</h2>
{% if notifications %}
<div class="links-list">
<ul>
{% for notification in notifications %}
<li class="combo-notification {% if notification.acked %}combo-notification-acked{% endif %}"
@ -16,8 +15,9 @@
</li>
{% endfor %}
</ul>
</div>
{% else %}
<div>
<p>{% trans 'No notifications.' %}</p>
</div>
{% endif %}
{% endblock %}