From 618aaf98dbbb21e610eaa97133082e98be75065a Mon Sep 17 00:00:00 2001 From: Benjamin Becker <benjamin.becker@dataport.de> Date: Wed, 1 Jul 2020 09:28:58 +0000 Subject: [PATCH] fixes bug in breadcrumbs --- ckanext/odsh/templates/package/read.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ckanext/odsh/templates/package/read.html b/ckanext/odsh/templates/package/read.html index d0bfd4be..a923666a 100644 --- a/ckanext/odsh/templates/package/read.html +++ b/ckanext/odsh/templates/package/read.html @@ -15,7 +15,7 @@ {% if pkg.organization %} {% set organization = h.get_translated(pkg.organization, 'title') or pkg.organization.name %} <li> - <a href={% url_for controller='organization', action='read', id=pkg.organization.name %} title={{ organization }}> + <a href={% url_for controller='organization', action='read', id=pkg.organization.name %} title="{{ organization }}"> {{ organization|truncate(30) }} </a> </li> @@ -23,7 +23,7 @@ <li>{% link_for _('Documents'), controller='package', action='search' %}</li> {% endif %} <li> - <a href={% url_for controller='package', action='read', id=pkg.name %} title={{ dataset }}> + <a href={% url_for controller='package', action='read', id=pkg.name %} title="{{ dataset }}""> {{ dataset|truncate(30) }} </a> </li> -- GitLab