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