{% extends "package/edit_base.html" %} {% block subtitle -%} {{ ui.subtitle_item(_('Collaborators')) }} {{- super() }} {%- endblock %} {% block content_action -%} {{ ui.content_action(_('Add Collaborators'), href=h.url_for('dataset.new_collaborator', id=pkg_dict.name), icon='plus-square') if h.check_access('package_collaborator_create', {'id': pkg_dict.id}) }} {{ super() }} {%- endblock %} {% block primary_content_inner %} {% set collaborators = h.get_collaborators(pkg_dict['id'])%} {% set count = collaborators|length %} {% set collaborators_count = ungettext('{count} collaborator', '{count} collaborators', count).format(count=count) %}