{% extends "layout.html" %} {% block title %}User Summary{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{%- for h, url in headers %} | {{h}} {%- if sort == loop.index0 %} {%- if desc and desc == 1 %} {% else %} {% endif -%} {% endif -%} | {% endfor -%}|
---|---|---|
{{loop.index}}. | {{r.name}} | {{r.linked_user_count}} / {{r.user_count}} {%- if r.user_count %} ({{ "%0.0f%%" % (100 * r.linked_user_count / r.user_count if r.linked_user_count else 0.0) }}){% endif -%} |
Total: | {{total_linked_user_count}} / {{total_user_count}} {%- if total_user_count %} ({{ "%0.0f%%" % (100 * total_linked_user_count / total_user_count) }}){% endif -%} |