mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
fix font of delete link in notifications
This commit is contained in:
parent
148183f530
commit
b2a69d93e6
1 changed files with 2 additions and 2 deletions
|
@ -32,13 +32,13 @@
|
|||
</td>
|
||||
<td>{{ moment(notification.created_at).fromNow(refresh=True) }}</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>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% else %}
|
||||
<p>No notifications to show.</p>
|
||||
<p>{{ _('No notifications to show.') }}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue