diff --git a/ckanext/odsh/templates/package/read.html b/ckanext/odsh/templates/package/read.html index d0bfd4be50e2de1592e59e00439d9097dec68415..a923666aa7745026d809d871998db125273660dd 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>