Skip to content
Snippets Groups Projects
Commit 618aaf98 authored by Benjamin Becker's avatar Benjamin Becker
Browse files

fixes bug in breadcrumbs

parent c5cea22f
Branches
Tags
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
{% if pkg.organization %} {% if pkg.organization %}
{% set organization = h.get_translated(pkg.organization, 'title') or pkg.organization.name %} {% set organization = h.get_translated(pkg.organization, 'title') or pkg.organization.name %}
<li> <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) }} {{ organization|truncate(30) }}
</a> </a>
</li> </li>
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<li>{% link_for _('Documents'), controller='package', action='search' %}</li> <li>{% link_for _('Documents'), controller='package', action='search' %}</li>
{% endif %} {% endif %}
<li> <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) }} {{ dataset|truncate(30) }}
</a> </a>
</li> </li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment