{% extends "base.html" %} {% block title %}{{ team.name }} - Codesphere Dashboard{% endblock %} {% block breadcrumb %}
{% endblock %} {% block content %}
{% if team.avatar_url %} {{ team.name }} {% else %}
{{ team.name[0]|upper }}
{% endif %}

{{ team.name }}

Team ID: {{ team.id }} ยท Datacenter: {{ team.default_data_center_id }}

โž• Create New Workspace

๐Ÿ’ป Workspaces {{ workspaces|length }}

{% include "partials/workspace_list.html" %}

๐ŸŒ Custom Domains {{ domains|length }}

{% if domains %}
{% for domain in domains %} {% endfor %}
Domain Status
{{ domain.name }} Active
{% else %}

No custom domains configured.

{% endif %}

๐Ÿ“Š Usage Summary (Last 7 Days)

{% if usage and usage.items %}
{% for item in usage.items %} {% endfor %}
Resource Plan Usage Replicas
{{ item.resource_name }} {{ item.plan_name }} {{ (item.usage_seconds / 3600)|round(2) }} hours {{ item.replicas }}

Total: {{ usage.total_items }} resources ยท Page {{ usage.current_page }} of {{ usage.total_pages }}

{% else %}

No usage data available for this period.

{% endif %}
{% endblock %}