2021-01-29 16:51:36 +00:00
|
|
|
{% extends 'components/card.html' %}
|
2021-01-16 22:04:09 +00:00
|
|
|
|
2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2020-11-08 02:59:38 +00:00
|
|
|
{% load humanize %}
|
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
{% block card-header %}
|
|
|
|
<h3 class="card-header-title has-background-white-ter is-block">
|
|
|
|
{% include 'snippets/status_header.html' with status=status %}
|
|
|
|
</h3>
|
|
|
|
{% endblock %}
|
2020-11-08 02:59:38 +00:00
|
|
|
|
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
{% block card-content %}
|
|
|
|
{% include 'snippets/status_content.html' with status=status %}
|
|
|
|
{% endblock %}
|
2020-11-08 02:59:38 +00:00
|
|
|
|
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
{% block card-footer %}
|
|
|
|
<div class="card-footer-item">
|
|
|
|
{% if request.user.is_authenticated %}
|
2021-01-17 18:45:25 +00:00
|
|
|
<div class="field has-addons">
|
|
|
|
<div class="control">
|
2021-01-31 16:08:52 +00:00
|
|
|
{% include 'snippets/toggle/toggle_button.html' with controls_text="show-comment" controls_uid=status.id text="Reply" icon="comment" class="is-small toggle-button" focus="id_content_reply" %}
|
2021-01-17 18:45:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
{% include 'snippets/boost_button.html' with status=status %}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
{% include 'snippets/fav_button.html' with status=status %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-08 02:59:38 +00:00
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
{% else %}
|
|
|
|
<a href="/login">
|
|
|
|
<span class="icon icon-comment" title="Reply">
|
|
|
|
<span class="is-sr-only">Reply</span>
|
|
|
|
</span>
|
2020-11-08 02:59:38 +00:00
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
<span class="icon icon-boost" title="Boost status">
|
|
|
|
<span class="is-sr-only">Boost status</span>
|
|
|
|
</span>
|
2020-11-08 02:59:38 +00:00
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
<span class="icon icon-heart" title="Like status">
|
|
|
|
<span class="is-sr-only">Like status</span>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-11-08 02:59:38 +00:00
|
|
|
|
2021-01-16 22:04:09 +00:00
|
|
|
<div class="card-footer-item">
|
|
|
|
{% include 'snippets/privacy-icons.html' with item=status %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-footer-item">
|
|
|
|
<a href="{{ status.remote_id }}">{{ status.published_date | post_date }}</a>
|
|
|
|
</div>
|
|
|
|
<div class="card-footer-item">
|
2021-01-17 19:09:49 +00:00
|
|
|
{% include 'snippets/status_options.html' with class="is-small" right=True %}
|
2021-01-16 22:04:09 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block card-bonus %}
|
|
|
|
{% if request.user.is_authenticated %}
|
|
|
|
{% with status.id|uuid as uuid %}
|
2021-01-17 18:38:34 +00:00
|
|
|
<section class="hidden" id="show-comment-{{ status.id }}">
|
2021-01-16 22:04:09 +00:00
|
|
|
<div class="card-footer">
|
|
|
|
<div class="card-footer-item">
|
2021-01-17 03:57:20 +00:00
|
|
|
{% include 'snippets/create_status_form.html' with reply_parent=status type="reply" %}
|
2020-11-12 02:32:52 +00:00
|
|
|
</div>
|
2021-01-16 22:04:09 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endwith %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|