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

fixes bug in breadcrumbs

parent c5cea22f
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment