{% extends 'layout.html' %} {% block content %}

Team Management

Create New Team
{% if teams %} {% for team in teams %} {% endfor %}
Name Description Members Created Actions
{{ team.name }} {{ team.description }} {{ team.users|length }} {{ team.created_at.strftime('%Y-%m-%d') }} Manage
{% else %}

No teams found. Create a team to get started.

{% endif %}
{% endblock %}