{% extends "permissions.html" %} {% block content %} {{ super() }}
{% trans %}Division Name{% endtrans %} | {# TRANS: In an overview table of divisions, this is the heading for the column showing the number of people or groups granted the 'submit' permission, meaning the can submit requests. #}{% trans %}Submitters{% endtrans %} | {# TRANS: In an overview table of divisions, this is the heading for the column showing the number of people or groups granted the 'review' permission, meaning they can evaluate submitted requests. #}{% trans %}Reviewers{% endtrans %} | {# TRANS: In an overview table of divisions, this is the heading for the column showing the number of people or groups granted the 'pay' permission, meaning they can mark requests as paid. #}{% trans %}Payers{% endtrans %} | {# TRANS: In an overview table of divisions, this is the heading for the column showing the number of people or groups granted the 'audit' permission, meaning they are able to view all requests in a division, but not modify them in any way. #}{% trans %}Auditors{% endtrans %} | {# TRANS: In an overview table of divisions, this is the heading for the column showing the number of people or groups granted the 'admin' permission, meaning they can manage who has been granted the other permissions. #}{% trans %}Admins{% endtrans %} |
---|---|---|---|---|---|
{{ division.name }} | {% for perm in (PermissionType.submit, PermissionType.review, PermissionType.pay, PermissionType.audit, PermissionType.admin) %}{{ division.permissions[perm]|length|numberfmt }} | {% endfor %}