| {% if c == 'recent_download_count' %}Downloads (90d){% else %}{{ name }}{% endif %} |
{% if c == 'arch_breakdown' %}
{% if arch_breakdown %}
{% for code, count, pct in arch_breakdown %}
|
{{ code }}
|
|
{{ "{:,}".format(count) }} ({{ pct | round | int }}%)
|
{% endfor %}
{% else %}
No downloads in the last 90 days
{% endif %}
{% elif c == 'firmware_breakdown' %}
{% if firmware_breakdown %}
{% for label, count, pct in firmware_breakdown %}
|
{{ label }}
|
|
{{ "{:,}".format(count) }} ({{ pct | round | int }}%)
|
{% endfor %}
{% else %}
No downloads in the last 90 days
{% endif %}
{% else %}
{{ get_value(model, c) }}
{% endif %}
|
{% endfor %}