{% extends "page.html" %} {% block subtitle %}{{ c.group_dict.display_name }}{% endblock %} {% block breadcrumb_content %}
  • {% link_for _('Groups'), controller='group', action='index' %}
  • {% link_for c.group_dict.display_name|truncate(35), controller='group', action='read', id=c.group_dict.name %}
  • {% endblock %} {% block actions_content %} {% if h.check_access('group_update', {'id': c.group_dict.id}) %}
  • {% link_for _('Add Dataset'), controller='package', action='new', group=c.group_dict.id, class_='btn', icon='plus-sign-alt' %}
  • {% link_for _('Edit'), controller='group', action='edit', id=c.group_dict.name, class_='btn btn-primary', icon='wrench' %}
  • {% endif %}
  • {{ h.follow_button('group', c.group_dict.id) }}
  • {% endblock %} {% block primary_content %}
    {% block page_header %} {% endblock %} {% block primary_content_inner %}{% endblock %}
    {% endblock %} {% block secondary_content %}

    {{ c.group_dict.display_name }}

    {% if c.group_dict.description %}

    {{ h.markdown_extract(c.group_dict.description, 180) }} {% link_for _('read more'), controller='group', action='about', id=c.group_dict.name %}

    {% else %}

    {{ _('There is no description for this group') }}

    {% endif %}
    {{ _('Followers') }}
    {{ h.SI_number_span(c.group_dict.num_followers) }}
    {{ _('Datasets') }}
    {{ h.SI_number_span(c.group_dict.packages|length) }}
    {% endblock %} {% block links %} {{ super() }} {% include "group/snippets/feeds.html" %} {% endblock %}