Skip to content

Commit

Permalink
feat(templates): add autocomplete template for Place
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger authored and koeaw committed May 8, 2024
1 parent 2259211 commit e95444d
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{% if result.lng and result.lat %}
<a data-lat="{{ result.lat }}"
data-lng="{{ result.lng }}"
title="Map"
onmouseenter="showmap(this);"
onmouseout="delmap(this);">
<span class="material-symbols-outlined material-symbols-align">location_on</span></a>
{% endif %}
{{ result }}
{% if result.kind %}<i>({{ result.kind }})</i>{% endif %}

0 comments on commit e95444d

Please sign in to comment.