compute stats for completion by zone, have base tags, split categories
This commit is contained in:
parent
f15fec6d18
commit
f69b7824af
16 changed files with 1257 additions and 118 deletions
|
@ -11,15 +11,37 @@
|
|||
<div class="example-wrapper">
|
||||
<h1>Labourage fait sur la zone "{{ zone }}" ✅</h1>
|
||||
|
||||
<p>
|
||||
lieux trouvés en plus: {{ results|length }}
|
||||
</p>
|
||||
|
||||
{# {{ dump(results) }} #}
|
||||
{% for commerce in results %}
|
||||
<p>
|
||||
{{ commerce.name }}
|
||||
</p>
|
||||
<pre>
|
||||
{{ dump(commerce) }}
|
||||
</pre>
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
commerces existants disposant d'un moyen de contact mail: {{ commerces|length }}
|
||||
</p>
|
||||
{# {{ dump(commerces[0]) }} #}
|
||||
<ul>
|
||||
{% for commerce in commerces %}
|
||||
<li>
|
||||
{% if commerce.name is not null %}
|
||||
{{ commerce.name }},
|
||||
{% else %}
|
||||
un lieu sans nom
|
||||
{% endif %}
|
||||
|
||||
{# {{ commerce.note }},
|
||||
{{ commerce.has_address }},
|
||||
{{ commerce.has_website }},
|
||||
{{ commerce.has_wheelchair }},
|
||||
{{ commerce.has_note }} #}
|
||||
|
||||
<a href="https://www.openstreetmap.org/{{ commerce.getOsmKind() }}/{{ commerce.getOsmId() }}" target="_blank">voir sur osm</a>
|
||||
|
||||
</li>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue