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-04-20 16:54:02 +00: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-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 %}
|
|
|
|
|