1
0
Fork 0
bookwyrm/bookwyrm/templates/snippets/status/status_body.html

15 lines
386 B
HTML
Raw Normal View History

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