{% extends "page.html" %} {% set source = c.pkg_dict or c.harvest_source %} {% if source %} {% set authorized_user = h.check_access('harvest_source_update', {'id':source.id }) %} {% else %} {% set authorized_user = h.check_access('harvest_source_create') %} {% endif %} {% block subtitle %}{{ source.title or source.name }}{% endblock %} {% block breadcrumb_content_root_selected %} class="active"{% endblock %} {% block breadcrumb_content %} {% if source.organization %} {% set org = source.organization %}
  • {{ h.nav_link(_('Organizations'), named_route='organizations_index') }}
  • {{ h.nav_link(org.title or org.name|truncate(10), named_route='organization_read', id=org.name) }}
  • {{ h.nav_link(_('Harvest Sources'), named_route='{0}_search'.format(c.dataset_type)) }}
  • {{ h.nav_link(c.harvest_source.title|truncate(10), named_route='{0}_read'.format(c.dataset_type), id=c.harvest_source.name) }} {% else %}
  • {{ h.nav_link(_('Harvest Sources'), named_route='{0}_search'.format(c.dataset_type)) }}
  • {{ h.nav_link(c.harvest_source.title|truncate(30), named_route='{0}_read'.format(c.dataset_type), id=c.harvest_source.name) }} {% endif %} {% endblock %}