2020-08-28 21:16:26 +01:00
|
|
|
<div class="note">
|
|
|
|
<div class="note-info">
|
|
|
|
<a href="{{ path('settings_avatar') }}">
|
|
|
|
<img src="{{ note.getAvatarUrl() }}" alt="{{ note.getActorNickname() }}'s avatar">
|
|
|
|
</a>
|
|
|
|
<b>{{ note.getActorNickname() }}</b>
|
|
|
|
</div>
|
|
|
|
<div class="note-content">
|
|
|
|
{{ note.getContent() }}
|
2020-09-05 03:28:50 +01:00
|
|
|
<div class="note-attachments">
|
|
|
|
{% for attachment in note.getAttachments() %}
|
|
|
|
{% if attachment.mimetype starts with 'image/' %}
|
|
|
|
<img src="{{ path('attachment_inline', {'id': attachment.getId()}) }}"> {{ attachment.getTitle() }} </img>
|
|
|
|
{% elseif attachment.mimetype starts with 'video/' %}
|
|
|
|
<video src="{{ path('attachment_inline', {'id': attachment.getId()}) }}"> {{ attachment.getTitle() }} </img>
|
|
|
|
{% else %}
|
|
|
|
<i> {{ attachment.getTitle() }} </i>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2020-08-28 21:16:26 +01:00
|
|
|
</div>
|
|
|
|
<div class="note-actions">
|
2020-09-04 15:18:58 +01:00
|
|
|
{% for act in get_note_actions(note) %}
|
2020-09-04 22:04:55 +01:00
|
|
|
{{ form(act) }}
|
2020-09-04 15:18:58 +01:00
|
|
|
{% endfor %}
|
2020-08-28 21:16:26 +01:00
|
|
|
<a href="{{ path('note_reply', {'reply_to': note.getId()}) }}">
|
|
|
|
<svg class="icon icon-reply">
|
|
|
|
<use xlink:href="#icon-reply"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="replies">
|
|
|
|
{% for reply in note.getReplies() %}
|
|
|
|
{% include '/note/view.html.twig' with {'note': reply} only %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|