Use pen icon instead of edit

This commit is contained in:
rubenwardy
2021-02-28 05:16:15 +00:00
parent f9089319d3
commit aead579f0b
6 changed files with 8 additions and 8 deletions

View File

@@ -34,7 +34,7 @@
{% if current_user == review.author %}
<a class="btn btn-primary btn-sm ml-1 float-right"
href="{{ review.package.getReviewURL() }}">
<i class="fas fa-edit"></i>
<i class="fas fa-pen"></i>
</a>
{% endif %}

View File

@@ -50,12 +50,12 @@
{% if current_user == thread.author and thread.review and thread.replies[0] == r %}
<a class="float-right btn btn-primary btn-sm ml-2"
href="{{ thread.review.package.getReviewURL() }}">
<i class="fas fa-edit"></i>
<i class="fas fa-pen"></i>
</a>
{% elif r.checkPerm(current_user, "EDIT_REPLY") %}
<a class="float-right btn btn-primary btn-sm ml-2"
href="{{ url_for('threads.edit_reply', id=thread.id, reply=r.id) }}">
<i class="fas fa-edit"></i>
<i class="fas fa-pen"></i>
</a>
{% endif %}