{# Renders a media item for a organization. This should be used in a list. organization - A organization dict. first - Pass true if this is the first item in a row. last - Pass true if this is the last item in a row. Example: #} {% set url = h.url_for(organization.type ~ '_read', action='read', id=organization.name) %}
  • {{ organization.name }}

    {{ organization.display_name }}

    {% if organization.description %}

    {{ h.markdown_extract(organization.description, extract_length=80) }}

    {% else %}

    {{ _('This organization has no description') }}

    {% endif %} {% if organization.packages %} {{ ungettext('{num} Dataset', '{num} Datasets', organization.packages).format(num=organization.packages) }} {% else %} {{ _('0 Datasets') }} {% endif %}