{% extends "aristotle_mdr/user/userHome.html" %} {% load humanize i18n aristotle_tags util_tags %} {% has_group_perm group "edit_group_details" as can_edit_workgroup %} {% block workgroupSub %} {% endblock %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with subWorkgroup=item %} {% endblock %} {% block page %}

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

{{ workgroup.definition|bleach }}

Details

Managers {% if user_is_admin %} Add {% endif %}
{% for member in workgroup.managers.all %} {% firstof member.get_full_name member.email %}{% 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 %}