{% extends 'components/card.html' %} {% load i18n %} {% load bookwyrm_tags %} {% load humanize %} {% block card-header %}

{% include 'snippets/status/status_header.html' with status=status %}

{% endblock %} {% block card-content %}{% endblock %} {% block card-footer %}
{% if moderation_mode and perms.bookwyrm.moderate_post %} {# moderation options #} {% elif no_interact %} {# nothing here #} {% elif request.user.is_authenticated %}
{% trans "Reply" as button_text %} {% include 'snippets/toggle/toggle_button.html' with controls_text="show-comment" controls_uid=status.id text=button_text icon="comment" class="is-small toggle-button" focus="id_content_reply" %}
{% include 'snippets/boost_button.html' with status=status %}
{% include 'snippets/fav_button.html' with status=status %}
{% else %} {% trans "Reply" %} {% trans "Boost status" %} {% trans "Like status" %} {% endif %}
{% endblock %} {% block card-bonus %} {% if request.user.is_authenticated and not moderation_mode %} {% with status.id|uuid as uuid %} {% endwith %} {% endif %} {% endblock %}