{% extends "base.html" %} {% block title %}Teams - SEREACT Web Client{% endblock %} {% block content %}

Teams

Create Team
{% if teams %}
{% for team in teams %}
{{ team.name }}

{{ team.description or 'No description provided' }}

Created: {{ team.created_at.strftime('%Y-%m-%d %H:%M') if team.created_at else 'Unknown' }}
{% if team.updated_at and team.updated_at != team.created_at %}
Updated: {{ team.updated_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %}
{% endfor %}
{% else %}

No Teams Found

Create your first team to get started.

Create First Team
{% endif %} {% endblock %} {% block scripts %} {% endblock %}