Skip to content

Commit

Permalink
[#1071] Closes hanging <li> when package is associated with org
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmartin committed Jul 2, 2013
1 parent e6b119d commit 779952c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/templates/package/base.html
Expand Up @@ -10,7 +10,7 @@
{% if pkg.organization %}
{% set organization = pkg.organization.title or pkg.organization.name %}
<li>{% link_for _('Organizations'), controller='organization', action='index' %}</li>
<li>{% link_for organization|truncate(30), controller='organization', action='read', id=pkg.organization.name %}
<li>{% link_for organization|truncate(30), controller='organization', action='read', id=pkg.organization.name %}</li>
{% else %}
<li>{% link_for _('Datasets'), controller='package', action='search' %}</li>
{% endif %}
Expand Down

0 comments on commit 779952c

Please sign in to comment.