mirror of
https://codeberg.org/SimpleWeb/SimpleerTube.git
synced 2024-11-14 21:23:16 +00:00
Make comment users clickable
This commit is contained in:
parent
a27dccca5a
commit
051272a874
|
@ -78,7 +78,10 @@ Views: <b>{{ video.views }}</b> Likes: <b>{{ video.likes }}</b> Dislikes: <b>{{
|
|||
{% for comment in comments.data %}
|
||||
|
||||
{% if not comment.isDeleted %}
|
||||
<b>{{ comment.account.displayName }}</b>
|
||||
<a href="/{{ domain }}/accounts/{{ comment.account.name }}@{{ comment.account.host }}">
|
||||
<b>{{ comment.account.displayName }}</b>
|
||||
</a>
|
||||
|
||||
<br>
|
||||
{{ comment.text }}
|
||||
<br>
|
||||
|
|
Loading…
Reference in a new issue