Upgrade to fontawesome 6

* Adapt fontawesome usage when needed
* Fix uv guide not importing css
* Remove utf8 usage for fontawesome
This commit is contained in:
2024-09-17 15:08:19 +02:00
committed by Bartuccio Antoine
parent 3d6c260e53
commit 271d57051e
27 changed files with 52 additions and 3937 deletions

View File

@ -123,7 +123,7 @@
</a>
{% if user.can_edit(m) %}
<a href="{{ url('forum:edit_message', message_id=m.id) }}">
<i class="fa fa-pencil"></i>
<i class="fa fa-pencil edit-action"></i>
</a>
{% endif %}
@ -137,7 +137,7 @@
{% if not m._deleted and (user_is_admin or user.id == m.author_id) %}
<span>
<a href="{{ url('forum:delete_message', message_id=m.id) }}">
<i class="fa fa-trash"></i>
<i class="fa fa-trash-can delete-action"></i>
</a>
</span>
{% endif %}