17 lines
452 B
HTML
17 lines
452 B
HTML
<div>
|
|
<span class="action">
|
|
{% include "action_reply_post.html" %}
|
|
{% include "action_like_post.html" %}
|
|
{% include "action_boost_post.html" %}
|
|
{% include "action_open_post.html" %}
|
|
</span>
|
|
{% if post.summary %}
|
|
<details>
|
|
<summary>{{ post.summary }}</summary>
|
|
{{ post.safe_content_local }}
|
|
</details>
|
|
{% else %}
|
|
{{ post.safe_content_local }}
|
|
{% endif %}
|
|
<div id="replies_{{ post.pk }}"></div>
|
|
</div>
|