Projet

Général

Profil

0001-notifications-update-markup-for-proper-spacing-34243.patch

Frédéric Péters, 23 juin 2019 13:16

Télécharger (1,12 ko)

Voir les différences:

Subject: [PATCH] notifications: update markup for proper spacing (#34243)

 .../apps/notifications/templates/combo/notificationscell.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
combo/apps/notifications/templates/combo/notificationscell.html
2 2
{% block cell-content %}
3 3
<h2>{% trans "Notifications" %}</h2>
4 4
{% if notifications %}
5
<div class="links-list">
6 5
<ul>
7 6
  {% for notification in notifications %}
8 7
  <li class="combo-notification {% if notification.acked %}combo-notification-acked{% endif %}"
......
16 15
  </li>
17 16
  {% endfor %}
18 17
</ul>
19
</div>
20 18
{% else %}
19
<div>
21 20
<p>{% trans 'No notifications.' %}</p>
21
</div>
22 22
{% endif %}
23 23
{% endblock %}
24
-