fix font of delete link in notifications

This commit is contained in:
rimu 2024-06-10 14:16:22 +08:00
parent 148183f530
commit b2a69d93e6

View file

@ -32,13 +32,13 @@
</td> </td>
<td>{{ moment(notification.created_at).fromNow(refresh=True) }}</td> <td>{{ moment(notification.created_at).fromNow(refresh=True) }}</td>
<td> <td>
<a href="{{ url_for('user.notification_delete', notification_id=notification.id) }}" class="no-underline"><span class="fe fe-delete"> Delete</span></a> <a href="{{ url_for('user.notification_delete', notification_id=notification.id) }}" class="no-underline"><span class="fe fe-delete"></span> {{ _('Delete') }}</a>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
{% else %} {% else %}
<p>No notifications to show.</p> <p>{{ _('No notifications to show.') }}</p>
{% endif %} {% endif %}
</div> </div>