{% extends "base.html" %} {% load humanize_latlon %} {% block meta %} {% endblock %} {% block css %} {{ block.super }} {% endblock %} {% block js %} {{ block.super }} {% endblock %} {% block run_js %} {{ block.super }} {% endblock %} {% block content %}
Latitude {{ object.point.y|as_dms:'lat' }}
Longitude {{ object.point.x|as_dms:'lon' }}
Religion {{ object.religion|default_if_none:"unknown"|safe }}
Denomination {{ object.denomination|default_if_none:"unknown"|safe }}

Kirchenreich.org Checks

We want to improve the quality of the information in OpenStreetMap about places of worship. So we run some tests to check the quality of this place data.

Quality meter {% if checks_percent_reached < 25 %}
{{ checks_percent_reached }}%
{% elif checks_percent_reached > 25 and checks_percent_reached < 50 %}
{{ checks_percent_reached }}%
{% elif checks_percent_reached > 50 and checks_percent_reached < 80 %}
{{ checks_percent_reached }}%
{% elif checks_percent_reached > 80 and checks_percent_reached < 100 %}
{{ checks_percent_reached }}%
{% endif %}
    {% for check in checks.pretty %}
  • {% if check.value %} {% else %} {% endif %} {{ check.description }}
  • {% endfor %}
{% for osm_place in osm_places %}

OpenStreetMap ({{ osm_place.osm_id }})

Name {{ osm_place.name|default_if_none:'unknown'|safe }}
Religion {{ osm_place.religion|default_if_none:'unknown'|safe }}
Denomination {{ osm_place.denomination|default_if_none:'unknown'|safe }}
{% if osm_place.addional_fields|length > 0 %} {% for key, value in addional_fields.items %} {% endfor %}
{{ key }} {{ value }}
{% else %}
There are no addional information from OpenStreetMap
{% endif %} {% if osm_place.osm_url %}

You can get more information about this OpenStreetMap entry here.

{% endif %}
{% endfor %} {% for wikipedia_page in wikipedia_pages %}

{{ wikipedia_page.title }}

Read more about {{ wikipedia_page.title }} in the Wikipedia here.

{% endfor %}
{% endblock %}