{% extends "base.html" %} {% block title %}Design Vote Tally{% endblock %} {# Admin-only: which design are active users currently keeping? #} {% block content %}

Design Vote Tally

Which web portal design each active user is currently using.
Classic design
{{ tally.classic }}
{{ ((tally.classic / total * 100) | round(1)) if total else 0 }}% of {{ total }} active users
New design
{{ tally.modern }}
{{ ((tally.modern / total * 100) | round(1)) if total else 0 }}% of {{ total }} active users
Total active users
{{ total }}
Every account defaults to classic
Breakdown by role
{% for role, theme, count in by_role %} {% else %} {% endfor %}
RoleDesignUsers
{{ role.replace('_',' ')|title }} {{ 'New design' if theme == 'modern' else 'Classic design' }} {{ count }}
No active users.
{% endblock %}