{% from 'common/macros.html' import format_size %} {% macro conversation_storage(conversation_count, message_count, attachment_count, total_size, recent_conversations) %}
Conversation Storage
View All
Conversations:
{{ conversation_count }}
Messages:
{{ message_count }}
Attachments:
{{ attachment_count }}
Total Size:
{{ format_size(total_size) }}
{% if recent_conversations %}
Recent Activity
{% endif %}
{% endmacro %}