Make comment users clickable
This commit is contained in:
parent
a27dccca5a
commit
051272a874
1 changed files with 4 additions and 1 deletions
|
@ -78,7 +78,10 @@ Views: <b>{{ video.views }}</b> Likes: <b>{{ video.likes }}</b> Dislikes: <b>{{
|
||||||
{% for comment in comments.data %}
|
{% for comment in comments.data %}
|
||||||
|
|
||||||
{% if not comment.isDeleted %}
|
{% 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>
|
<br>
|
||||||
{{ comment.text }}
|
{{ comment.text }}
|
||||||
<br>
|
<br>
|
||||||
|
|
Loading…
Reference in a new issue