mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
10 lines
445 B
Twig
10 lines
445 B
Twig
{% for geoname in geonames %}
|
|
<div class="box {% if loop.index is odd %}boxI{% else %}boxP{% endif %}" id="geo_{{geoname.geoname_id}}">
|
|
<div>{{geoname.title_highlighted|raw}}, {{geoname.country_highlighted|raw}}</div>
|
|
{% if geoname.region %}<div>{{geoname.region}}</div>{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
{% if geonames|length == 0 %}
|
|
<div class='box boxI unselectable'> <div>{{ 'No matches found' | trans }}</div></div>
|
|
{% endif %}
|