{% extends "base_admin.html" %}
{% block title %}Overview ยท {{ design.project_name | default('RustIO') }}{% endblock %}
{% block admin_content %}
{% set total = namespace(records=0, max=0) %}
{% for card in dashboard_cards | default([]) %}
{% set total.records = total.records + card.value %}
{% if card.value > total.max %}{% set total.max = card.value %}{% endif %}
{% endfor %}
Workspace overview
Your workspace
{% if dashboard_cards | length == 0 %}
No models registered yet. Add one with rustio new app <name>.
{% else %}
{{ dashboard_cards | length }} model{% if dashboard_cards | length != 1 %}s{% endif %} registered,
{{ total.records }} record{% if total.records != 1 %}s{% endif %} across all of them.
{% endif %}
{% for card in dashboard_cards | default([]) %}
{{ card.value }}
{{ card.label }}
{% endfor %}
{% endblock %}