{% extends "webadmin/base.html" %} {% load i18n %} {% load markup %} {% load custom_tags %} {% block css %} {% endblock %} {% block title %}{% trans "Scientists" %}{% endblock %} {% block jscript %} {% endblock %} {% block content %}

add {% trans "Add new scientist" %}

{% if info.message %}
{{ info.message|safe|linebreaks }}
{% endif %}

{% trans "Scientists" %}

{% if controller.experimentersCount %}
Loading
{% for dict in controller.experimenters %} {% endfor %}
{% trans "Actions" %} {% trans "Name" %} {% trans "Omename" %} {% trans "Institution" %} {% trans "Roles" %}
edit id:{{ dict.experimenter.id }} {{ dict.experimenter.institution|default_if_none:"-"|truncatewords:"3" }} {% if dict.admin %}admin {% endif %} {% if dict.guest %}guest {% endif %} {% if dict.ldap %}ldap {% endif %} {% if dict.active %}active{% else %}active{% endif %}

admin - Admin; guest - Guest; ldap - ldap; active - active; notactive - not active;

{% trans "Summary" %}

Currently there are {{ controller.experimentersCount.experimenters }} accounts: {{ controller.experimentersCount.active }} active; {{ controller.experimentersCount.admin }} admin; {{ controller.experimentersCount.guest }} guest; {{ controller.experimentersCount.ldap }} ldap.

{% else %}

{% trans "No scientists in OMERO." %}

{% endif %} {% endblock %}