diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-10-01 18:37:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-01 18:37:12 +0200 |
| commit | 8bd7358c065a9c96efdcc188b23596ecacaaf2e7 (patch) | |
| tree | 6624deb9186ef9979230e8e63a871b96a4dd38b1 /searx/templates/simple/result_templates/map.html | |
| parent | 458575c221abcdbe3c0ffb633dd06f5f6d05bf2e (diff) | |
| parent | a53a4d5012a3aa5bcabbe0d7db8805fdf342d896 (diff) | |
Merge pull request #371 from dalf/searxng-theme-simple
Searxng theme simple
Diffstat (limited to 'searx/templates/simple/result_templates/map.html')
| -rw-r--r-- | searx/templates/simple/result_templates/map.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/result_templates/map.html b/searx/templates/simple/result_templates/map.html index dc6a62010..962f66216 100644 --- a/searx/templates/simple/result_templates/map.html +++ b/searx/templates/simple/result_templates/map.html @@ -39,7 +39,7 @@ </table> {%- if (result.latitude and result.longitude) or result.boundingbox -%} - <small> <a class="btn-collapse collapsed searx_init_map hide_if_nojs" data-target="#result-map-{{ index }}" data-btn-text-collapsed="{{ _('show map') }}" data-btn-text-not-collapsed="{{ _('hide map') }}" data-leaflet-target="osm-map-{{ index }}" data-map-lon="{{ result.longitude }}" data-map-lat="{{ result.latitude }}" {% if result.boundingbox %}data-map-boundingbox='{{ result.boundingbox|tojson|safe }}'{% endif %} {% if result.geojson %}data-map-geojson='{{ result.geojson|tojson|safe }}'{% endif %}>{{ icon( 'globe') }} {{ _('show map') }}</a></small> + <small> <a class="btn-collapse collapsed searxng_init_map hide_if_nojs" data-target="#result-map-{{ index }}" data-btn-text-collapsed="{{ _('show map') }}" data-btn-text-not-collapsed="{{ _('hide map') }}" data-leaflet-target="osm-map-{{ index }}" data-map-lon="{{ result.longitude }}" data-map-lat="{{ result.latitude }}" {% if result.boundingbox %}data-map-boundingbox='{{ result.boundingbox|tojson|safe }}'{% endif %} {% if result.geojson %}data-map-geojson='{{ result.geojson|tojson|safe }}'{% endif %}>{{ icon( 'globe') }} {{ _('show map') }}</a></small> {%- endif -%} {{- result_sub_footer(result, proxify) -}} |