bookwyrm/bookwyrm/templates/snippets/status/body.html

14 lines
399 B
HTML
Raw Normal View History

2021-04-20 16:54:02 +00:00
{% extends 'snippets/status/layout.html' %}
2020-11-08 02:59:38 +00:00
2021-01-16 22:04:09 +00:00
{% block card-content %}
2021-04-20 16:54:02 +00:00
{% with status_type=status.status_type %}
2020-11-08 02:59:38 +00:00
2021-08-12 13:42:21 +00:00
{% if status_type == 'GeneratedNote' or status_type == 'Rating' %}
2021-04-20 16:54:02 +00:00
{% include 'snippets/status/generated_status.html' with status=status %}
{% else %}
{% include 'snippets/status/content_status.html' with status=status expand=expand %}
2021-03-12 01:38:21 +00:00
{% endif %}
2021-01-16 22:04:09 +00:00
{% endwith %}
2021-04-20 20:50:53 +00:00
{% endblock %}