{% extends "dashboard/layout.html" %} {% block title %}Mycelium Dashboard - Overview{% endblock %} {% block dashboard_content %}

Dashboard Overview

Welcome, {% if user.name %}{{ user.name }}{% else %}{{ user.email }}{% endif %}

Active Deployments

{% if user_metrics is defined and user_metrics.active_deployments_count is defined %}{{ user_metrics.active_deployments_count }}{% else %}0{% endif %}

Applications
Resources

{{ active_compute_resources_count | default(value=0) }}

Active Slices
Current Cost

{{ total_monthly_cost | default(value=0) | format_decimal(precision=2) }}

{{ currency_symbol | default(value="$") }}/month
Wallet Balance

{{ currency_symbol | default(value="$") }}{% if user_metrics is defined and user_metrics.wallet_balance is defined %}{{ user_metrics.wallet_balance | format_decimal(precision=2) }}{% else %}0{% endif %}

Credits ({{ display_currency | default(value="MC") }})

Your Roles

Manage your Mycelium experience through different perspectives:

USER

User Dashboard

Deploy apps, manage resources, monitor costs, and track usage.

RESOURCE PROVIDER

Resource Provider Dashboard

Manage your nodes, create slices, set pricing, and track earnings.

APPLICATION PROVIDER

Application Provider Dashboard

Develop, deploy, and manage applications for the TF ecosystem.

SERVICE PROVIDER

Service Provider Dashboard

Offer professional services and manage maintenance requests.

Statistics

Resource Utilization
Credits Usage Trend
User Activity
Deployment Distribution

Recent Activity

{% if recent_activities is defined and recent_activities and recent_activities | length > 0 %} {% for activity in recent_activities %} {% endfor %} {% else %} {% endif %}
Date Action Status Details
{{ activity.date }} {{ activity.action }} {% if activity.status == "Completed" %} {{ activity.status }} {% elif activity.status == "Active" %} {{ activity.status }} {% elif activity.status == "Pending" %} {{ activity.status }} {% else %} {{ activity.status }} {% endif %} {{ activity.details }}
No recent activity
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}