{% extends "base.html" %} {% block title %}{{ action }} Team - SEREACT Web Client{% endblock %} {% block content %}
{{ action }} Team
A unique name for this team
Optional description of the team's purpose or role
{% if team %}
Created: {{ team.created_at.strftime('%Y-%m-%d %H:%M') if team.created_at else 'Unknown' }}
Updated: {{ team.updated_at.strftime('%Y-%m-%d %H:%M') if team.updated_at else 'Unknown' }}
ID: {{ team.id }}
{% endif %}
Back to Teams
{% if action == 'Edit' %}
Danger Zone

Deleting a team is permanent and cannot be undone. All associated data may be affected.

{% endif %}
{% endblock %} {% block scripts %} {% if action == 'Edit' %} {% endif %} {% endblock %}