{% extends 'exp/base.html' %} {% load bootstrap3 %} {% load exp_extras %} {% block title %}Researchers{% endblock %} {% block flash %} {% bootstrap_messages %} {% endblock %} {% block content %}

Researchers

Researcher Name
Permissions

{% for user in object_list %}
{% if perms.accounts.can_edit_organization %} {{ user.get_short_name }} {% else %} {{ user.get_short_name }} {% endif %}
{{ user.display_permission }}
{% if perms.accounts.can_edit_organization %} Remove {% endif %}
{% empty %}

No researchers found!

{% endfor %}
{% if object_list %}
{% include 'studies/_paginator.html' with items=object_list %}
{% endif %}
{% endblock %}