mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
Merge pull request 'Add direct link to reply/comment' (#329) from jeena/pyfedi:main into main
Reviewed-on: https://codeberg.org/rimu/pyfedi/pulls/329
This commit is contained in:
commit
e545d33c1f
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@
|
||||||
{{ render_username(comment['comment'].author) }}
|
{{ render_username(comment['comment'].author) }}
|
||||||
{% endwith -%}
|
{% endwith -%}
|
||||||
{% if comment['comment'].author.id == post.author.id -%}<span title="Submitter of original post" aria-label="{{ _('Post creator') }}" class="small">[OP] </span>{% endif -%}
|
{% if comment['comment'].author.id == post.author.id -%}<span title="Submitter of original post" aria-label="{{ _('Post creator') }}" class="small">[OP] </span>{% endif -%}
|
||||||
<span class="text-muted small" aria_label="{{ _('When: ') }}">{{ arrow.get(comment['comment'].posted_at).humanize(locale=locale) }}{% if comment['comment'].edited_at -%}, edited {{ arrow.get(comment['comment'].edited_at).humanize(locale=locale) }} {% endif -%}</span>
|
<a href="#comment_{{ comment['comment'].id }}" class="text-muted small" aria_label="{{ _('When: ') }}">{{ arrow.get(comment['comment'].posted_at).humanize(locale=locale) }}{% if comment['comment'].edited_at -%}, edited {{ arrow.get(comment['comment'].edited_at).humanize(locale=locale) }} {% endif -%}</a>
|
||||||
<a class="unhide" href="#"><span class="fe fe-expand"></span></a>
|
<a class="unhide" href="#"><span class="fe fe-expand"></span></a>
|
||||||
{% if comment['comment'].reports and current_user.is_authenticated and post.community.is_moderator(current_user)%}
|
{% if comment['comment'].reports and current_user.is_authenticated and post.community.is_moderator(current_user)%}
|
||||||
<span class="red fe fe-report" title="{{ _('Reported. Check comment for issues.') }}"></span>
|
<span class="red fe fe-report" title="{{ _('Reported. Check comment for issues.') }}"></span>
|
||||||
|
|
Loading…
Add table
Reference in a new issue