docs: mark MC base currency implementation as completed in redesign plan

This commit is contained in:
mik-tf
2025-09-08 15:44:39 -04:00
parent abbf59207a
commit d9a449304c
16 changed files with 139 additions and 41 deletions

View File

@@ -50,7 +50,7 @@
<h5 class="card-title">Wallet Balance</h5>
<div class="d-flex justify-content-between align-items-end">
<h2 class="mb-0" id="dashboardWalletBalance">{{ 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 %}</h2>
<small class="text-muted">Credits (<span id="dashboardCurrencyCode">{{ display_currency | default(value="USD") }}</span>)</small>
<small class="text-muted">Credits (<span id="dashboardCurrencyCode">{{ display_currency | default(value="MC") }}</span>)</small>
</div>
</div>
</div>
@@ -266,7 +266,7 @@
<!-- JSON hydration for dashboard charts -->
<script type="application/json" id="dashboard-chart-data">
{
"displayCurrency": "{% if display_currency is defined and display_currency %}{{ display_currency }}{% else %}USD{% endif %}",
"displayCurrency": "{% if display_currency is defined and display_currency %}{{ display_currency }}{% else %}MC{% endif %}",
"resourceUtilization": {
{% if user_metrics is defined and user_metrics.resource_utilization is defined %}
"cpu": {{ user_metrics.resource_utilization.cpu }},