{% if conversations %}
{{ total }} conversation{{ 's' if total != 1 else '' }} {% if page > 1 %} · Page {{ page }} of {{ total_pages }}{% endif %}
{% for c in conversations %}
{{ c.title or 'Untitled' }}
{{ c.project_id }} {% if c.message_count %} · {{ c.message_count }} messages {% endif %} {% if c.updated_at %} · {{ c.updated_at[:10] if c.updated_at is string else c.updated_at.strftime('%Y-%m-%d') }} {% endif %} {% if c.tool %} {{ c.tool }} {% endif %}
{% if c.display_path %}
{{ c.display_path }}
{% endif %}
{% endfor %} {% if total_pages > 1 %}
{% if page > 1 %} {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} {% endif %}
{% endif %} {% else %}

No conversations found.

{% endif %}