diff --git a/ckan/templates/package/read_base.html b/ckan/templates/package/read_base.html index bc5b0d25e3d..daecd18bf75 100644 --- a/ckan/templates/package/read_base.html +++ b/ckan/templates/package/read_base.html @@ -68,7 +68,7 @@

{{ pkg.title or pkg.name }}

{% block package_organization %} {% if pkg.organization %} - {% snippet "snippets/organization.html", organization=pkg.organization %} + {% snippet "snippets/organization.html", organization=pkg.organization, has_context_title=true %} {% endif %} {% endblock %} diff --git a/ckan/templates/snippets/organization.html b/ckan/templates/snippets/organization.html index 09e1cf63710..1999fd0367c 100644 --- a/ckan/templates/snippets/organization.html +++ b/ckan/templates/snippets/organization.html @@ -12,7 +12,10 @@ #} {% with truncate=truncate or 0, url=h.url_for(controller='organization', action='read', id=organization.name) %} -
+
+ {% if has_context_title %} +

{{ _('Organization') }}

+ {% endif %}