Projet

Général

Profil

0001-use-.links-list-class-to-notifications-cell-list-436.patch

Voir les différences:

Subject: [PATCH] use .links-list class to notifications-cell list (#43698)

 combo/apps/notifications/templates/combo/notificationscell.html | 2 ++
 1 file changed, 2 insertions(+)
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">
5 6
<ul>
6 7
  {% for notification in notifications %}
7 8
  <li class="combo-notification {% if notification.acked %}combo-notification-acked{% endif %}"
......
15 16
  </li>
16 17
  {% endfor %}
17 18
</ul>
19
</div>
18 20
{% else %}
19 21
<div>
20 22
<p>{% trans 'No notifications.' %}</p>
21
-