{% extends theme("layouts/1-column.html") %} {% from theme('macros/paginator.html') import paginator with context %} {% set meta = { 'title': _('Reuses'), 'description': _("%(site)s reuse search", site=config['SITE_TITLE']), 'keywords': [_('search'), _('reuses')], 'robots': 'noindex', } %} {% set bundle = 'search' %} {% block breadcrumb %}
  • {{ _('Reuses') }} {{ _('%(start)s to %(end)s on %(total)s', start=reuses.page_start, end=reuses.page_end, total=reuses.total) }}
  • {% endblock %} {# TODO : pull this from somewhere else, results.facet doesn't contain the list when you're already in a filtered mode #} {% set reuses_topics = ( ('health', _('Health')), ('transport_and_mobility', _('Transport and mobility')), ('housing_and_development', _('Housing and development')), ('food_and_agriculture', _('Food and agriculture')), ('culture_and_recreation', _('Culture and recreation')), ('economy_and_business', _('Economy and business')), ('environment_and_energy', _('Environment and energy')), ('work_and_training', _('Work and training')), ('politics_and_public_life', _('Politics and public life')), ('safety_and_security', _('Safety and security')), ('education_and_research', _('Education and research')), ('society_and_demography', _('Society and demography')), ('law_and_justice', _('Law and justice')), ('open_data_tools', _('Open data tools')), ('others', _('Others')), ) %} {% block main_content %}
    {% include theme("svg/search.svg") %}

    {{ _('Reuses')}} {{reuses.total}}

    {{ _('Search in datasets') }}
    {{ paginator(reuses) }}
    {% endblock %}