From 791bdb740d57a7e9b179501c9208b7d135f3c345 Mon Sep 17 00:00:00 2001 From: John Martin Date: Tue, 2 Jul 2013 14:09:26 +0100 Subject: [PATCH] [#1071] Closes hanging
  • when package is associated with org --- ckan/templates/package/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckan/templates/package/base.html b/ckan/templates/package/base.html index 890c97531ae..da2d278e9f4 100644 --- a/ckan/templates/package/base.html +++ b/ckan/templates/package/base.html @@ -10,7 +10,7 @@ {% if pkg.organization %} {% set organization = pkg.organization.title or pkg.organization.name %}
  • {% link_for _('Organizations'), controller='organization', action='index' %}
  • -
  • {% link_for organization|truncate(30), controller='organization', action='read', id=pkg.organization.name %} +
  • {% link_for organization|truncate(30), controller='organization', action='read', id=pkg.organization.name %}
  • {% else %}
  • {% link_for _('Datasets'), controller='package', action='search' %}
  • {% endif %}