2021-04-20 12:54:02 -04:00
|
|
|
{% extends 'snippets/status/layout.html' %}
|
2020-11-07 21:59:38 -05:00
|
|
|
|
2021-01-16 17:04:09 -05:00
|
|
|
{% block card-content %}
|
2021-04-20 12:54:02 -04:00
|
|
|
{% with status_type=status.status_type %}
|
2020-11-07 21:59:38 -05:00
|
|
|
|
2021-04-20 12:54:02 -04: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 20:38:21 -05:00
|
|
|
{% endif %}
|
2021-01-16 17:04:09 -05:00
|
|
|
|
|
|
|
{% endwith %}
|
2021-04-20 16:50:53 -04:00
|
|
|
{% endblock %}
|
|
|
|
|