{% extends "base.html" %} {% block title %} GovReady-Q Setup {% endblock %} {% block contextbar %} {# kill it on this page #} {% endblock %} {% block body %}

Settings

{% if is_django_staff %}

You are a Django Administrator. You have extra permissions on this page and can visit the Django Admin homepage.

{% endif %}

Organization Administrators

There {%if org_admins|length == 1 %}is{% else %}are{% endif %} {{org_admins|length}} Organization Administrator{{org_admins|length|pluralize}} with permissions to manage organization settings and team membership.

{% include "settings_usertable.html" with users=org_admins listid="org-admins" listname="Organization Admins" %} {# Edit organization name, help squad, reviewers. #} {% if can_edit_org_settings %}

Discussion Help Squad

There {%if help_squad|length == 1 %}is{% else %}are{% endif %} {{help_squad|length}} user{{help_squad|length|pluralize}} on the Discussion Help Squad automatically receiving all discussion comments.

{% include "settings_usertable.html" with users=help_squad listid="help-squad" listname="Help Squad" %}

Reviewers

There {%if reviewers|length == 1 %}is{% else %}are{% endif %} {{reviewers|length}} user{{reviewers|length|pluralize}} with permissions to change the "review" status of answers.

{% include "settings_usertable.html" with users=reviewers listid="reviewers" listname="Reviewers" %} {% endif %} {# Link to the 'organization project' which is a Task that has questions about the organization. #} {% if can_see_org_settings %}

Organization Profile

{% if can_edit_org_settings %} Edit {% else %} View {% endif %} Organization Profile »

{% endif %} {# Link to the Django Admin if the user is permitted to go there. #} {% if is_django_staff %}

Database Records Administration

Django Admin homepage »

{% if can_visit_org_in_django_admin %}

Django Admin for this Organization »

{% endif %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}