mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-24 03:43:42 -08:00
25 lines
1.6 KiB
HTML
25 lines
1.6 KiB
HTML
{% if current_user.is_authenticated and current_user.verified %}
|
|
{% if can_upvote(current_user, community) %}
|
|
<div class="upvote_button {{ upvoted_class }}" role="button" aria-label="{{ _('UpVote') }}"
|
|
hx-post="/comment/{{ comment.id }}/upvote" hx-trigger="click throttle:1s" hx-target="closest .voting_buttons_new" tabindex="0">
|
|
<span class="fe fe-arrow-up"></span>
|
|
<img class="htmx-indicator" src="/static/images/spinner.svg" alt="" style="opacity: 0;">
|
|
</div>
|
|
{% endif %}
|
|
<span title="{{ comment.up_votes }}, {{ comment.down_votes }}">{{ comment.up_votes - comment.down_votes }}</span>
|
|
{% if can_downvote(current_user, community) %}
|
|
<div class="downvote_button {{ downvoted_class }}" role="button" aria-label="{{ _('DownVote') }}"
|
|
hx-post="/comment/{{ comment.id }}/downvote" hx-trigger="click throttle:1s" hx-target="closest .voting_buttons_new" tabindex="0">
|
|
<span class="fe fe-arrow-down"></span>
|
|
<img class="htmx-indicator" src="/static/images/spinner.svg" alt="" style="opacity: 0;">
|
|
</div>
|
|
{% endif %}
|
|
{% else %}
|
|
<div class="upvote_button digits_{{ digits(comment.up_votes) }} {{ upvoted_class }} redirect_login">
|
|
<span class="fe fe-arrow-up"></span>
|
|
</div>
|
|
{{ comment.up_votes - comment.down_votes }}
|
|
<div class="downvote_button digits_{{ digits(comment.down_votes) }} {{ downvoted_class }} redirect_login">
|
|
<span class="fe fe-arrow-down"></span>
|
|
</div>
|
|
{% endif %}
|