diff --git a/ckan/templates/package/search.html b/ckan/templates/package/search.html index b99f7281fd3..b2e1496fa73 100644 --- a/ckan/templates/package/search.html +++ b/ckan/templates/package/search.html @@ -4,7 +4,7 @@ {% block subtitle %}{{ _("Datasets") }}{% endblock %} {% block breadcrumb_content %} -
  • {{ h.nav_link(_(dataset_type.title() ~ 's'), controller='package', action='search', named_route=dataset_type ~ '_search', highlight_actions = 'new index') }}
  • +
  • {{ h.nav_link(_(dataset_type.title() + 's'), controller='package', action='search', named_route=dataset_type + '_search', highlight_actions = 'new index') }}
  • {% endblock %} {% block primary_content %} @@ -32,7 +32,7 @@ (_('Last Modified'), 'metadata_modified desc'), (_('Popular'), 'views_recent desc') if g.tracking_enabled else (false, false) ] %} - {% snippet 'snippets/search_form.html', form_id='dataset-search-form', type=dataset_type, query=c.q, sorting=sorting, sorting_selected=c.sort_by_selected, count=c.page.item_count, placeholder=_('Search ' ~ dataset_type ~ 's') ~ '...', facets=facets, show_empty=request.params, error=c.query_error, fields=c.fields %} + {% snippet 'snippets/search_form.html', form_id='dataset-search-form', type=dataset_type, query=c.q, sorting=sorting, sorting_selected=c.sort_by_selected, count=c.page.item_count, placeholder=_('Search ' + dataset_type + 's') + '...', facets=facets, show_empty=request.params, error=c.query_error, fields=c.fields %} {% endblock %} {% block package_search_results_list %} {{ h.snippet('snippets/package_list.html', packages=c.page.items) }}