{% extends "base.html" %} {% load url %} {% load bleach %} {% load guardian_tags %} {% load meta_attr %} {% load evaluation_extras %} {% load user_profile_link from profiles %} {% block title %} {{ object.title }} - {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block sidebar %} {% get_obj_perms request.user for object as "object_perms" %}{{ editor|user_profile_link }}
{% endfor %}The following users are members of, and are able to edit, this organization:
{% url 'organizations:editors-update' slug=object.slug as edit_url %} {% include "groups/partials/user_list.html" with edit_url=edit_url form=editors_form users=object.editors_group.user_set.all %}The following users are members of this organization:
{% url 'organizations:members-update' slug=object.slug as edit_url %} {% include "groups/partials/user_list.html" with edit_url=edit_url form=members_form users=object.members_group.user_set.all %}