{% extends theme('layouts/1-column.html') %} {% from theme('macros/follow.html') import follow_btn with context %} {% from theme('macros/breadcrumb.html') import breadcrumb with context %} {% from theme('macros/paginator.html') import paginator with context %} {% from theme('macros/certified.html') import badge_if_certified with context %} {% set is_hidden = (reuses.total or 0) + (datasets.total or 0) <= 0 %} {% set meta = { 'title': org.name, 'description': org.description|mdstrip(60)|forceescape, 'image': org.logo(external=True), 'keywords': [_('organization')], 'robots': 'noindex, nofollow' if is_hidden else '', } %} {% set read_only_mode = config.READ_ONLY_MODE %} {% set bundle = 'organization' %} {% block breadcrumb %}
  • {{ _('Organizations') }}
  • {{ org.name }}
  • {% endblock %} {% block main_content %}
    {% if org.deleted %}
    {{ _('This organization has been deleted. This will be permanent in the next 24 hours') }}
    {% endif %}

    {{ org.name }}

    {{ follow_btn(org) }} {% if can_edit %} {{ _('Modify organization') }} {% endif %}

    {{ _('Description') }}

    {{ org.description|markdown }}
    {# TODO: proper