{% 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_with_text="comment" class="is-small is-white toggle-button" focus="id_content_reply" %}
{% include 'snippets/boost_button.html' with status=status %}
{% include 'snippets/fav_button.html' with status=status %}
{% if not moderation_mode %}
{% include 'snippets/status/status_options.html' with class="is-small is-white" right=True %}
{% endif %}
{% 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 %}