{% extends "base.html" %} {% block title %}Codesphere Dashboard - Home{% endblock %} {% block content %}

Dashboard

Manage your Codesphere teams and workspaces

📁 Teams {{ teams|length }}

{% if teams %} {% else %}

No teams found. Create a team in Codesphere to get started.

{% endif %}

🏗️ Infrastructure

Datacenters

{{ datacenters|length }}
    {% for dc in datacenters %}
  • {{ dc.city }}, {{ dc.country_code }} {{ dc.name }}
  • {% endfor %}

Available Plans

{{ plans|length }}
    {% for plan in plans[:6] %}
  • {{ plan.title }} {{ plan.characteristics.cpu }} CPU · {{ plan.characteristics.ram }}MB
  • {% endfor %} {% if plans|length > 6 %}
  • ... and {{ plans|length - 6 }} more
  • {% endif %}

Base Images

{{ images|length }}
    {% for image in images[:6] %}
  • {{ image.name }} {{ image.supported_until|datetime }}
  • {% endfor %} {% if images|length > 6 %}
  • ... and {{ images|length - 6 }} more
  • {% endif %}

SDK Features Demonstrated

Teams

  • • List teams
  • • View details
  • • Manage domains
  • • Usage tracking

Workspaces

  • • Create/Delete
  • • Status monitoring
  • • Execute commands
  • • Environment vars

Pipeline

  • • Deploy profiles
  • • Start stages
  • • Monitor status
  • • Stream logs

Git

  • • View HEAD
  • • Pull changes
  • • Branch info
{% endblock %}