{% extends "common/base.html" %} {% from "components/header.html" import header %} {% block title %}Conversations - {% if site_settings.company_name %}DocuPulse for {{ site_settings.company_name }}{% else %}DocuPulse{% endif %}{% endblock %} {% block content %} {{ header( title="Conversations", description="Manage your conversations and messages", button_text="New Conversation" if current_user.is_admin else "", button_url=url_for('conversations.create_conversation') if current_user.is_admin else "", icon="fa-comments", button_icon="fa-plus" ) }}
{% for conversation in conversations %}
{{ conversation.name }}
Created on {{ conversation.created_at.strftime('%b %d, %Y') }}
{{ conversation.members|length }}

{{ conversation.description or 'No description' }}

Creator
Created by
{{ conversation.creator.username }} {{ conversation.creator.last_name }}
{% if current_user.is_admin %} {% endif %} {% endfor %}
{% block extra_js %} {% endblock %} {% endblock %}