{% extends "aristotle_mdr/user/userHome.html" %} {% load humanize i18n %} {% block collapse-link%} {{ workgroup.name }} {% endblock %} {% block workgroupSub %} {% endblock %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with subWorkgroup=item %} {% endblock %} {% block page %}

{% block title %}{{ workgroup.name }}{% endblock %}

{{ workgroup.definition | safe }}

Details

Managers {% if user_is_admin %} Add {% endif %}
{% for member in workgroup.managers.all %} {{ member.first_name }} {{ member.last_name }}({{ member.username }}){% if member.profile.is_registrar %}*{% endif %}{% if not forloop.last %},{% endif %} {% empty %} No active managers {% endfor %}
Members
{% with total=workgroup.members.count %} {% comment %} Cache the count then reuse for performance.{% endcomment %} {{ total }} current member{{ total|pluralize }} {% endwith %}
Items
{% with total=workgroup.items.count %} {% comment %} Cache the count then reuse for performance.{% endcomment %} {{ total }} current item{{ total|pluralize }} {% endwith %}

{% blocktrans %} Breakdown by status - items may be counted twice if they have been registered by multiple registration authorities. {% endblocktrans %}

    {% for a,b in counts %}
  • {{a}} - {{b}}
  • {% endfor %}

Recent conversations

View all posts. {% include 'aristotle_mdr/discussions/discussion_list.html' with discussions=item.discussions.all|slice:":5" %}
{% endblock %}