{% extends "browsing/generic_detail.html" %} {% load staticfiles %} {% load leaflet_tags %} {% load webpage_extras %} {% block title %}{{ object }}{% endblock %} {% block scriptHeader %} {% leaflet_js %} {% leaflet_css %} {% endblock %} {% block custom %}

Info

{% get_verbose_name place "name" %} {{ object.name }}
{% get_verbose_name place "geonames_id" %} {{ object.geonames_id }}
Coordinates {{ object.lat|truncatechars:8 }}
{{ object.lng|truncatechars:8 }}
{% get_verbose_name place "alt_names" %}
    {% for x in object.alt_names.all %} {% if x.id %}
  • {{ x }}
  • {% endif %} {% endfor %}
{% get_verbose_name place "part_of" %} {% if object.part_of %} {{ object.part_of }} {% else %} No entry {% endif %}
has children
    {% for x in object.has_child.all %} {% if x.id %}
  • {{ x }}
  • {% endif %} {% endfor %}

Map

{% for x in object.is_target_place.all %} {% endfor %}
Marc Plane Type Day of Attack
{{ x }} {{ x.plane_type }} {{ x.date_of_crash }}
{% for x in object.is_crashplace.all %} {% endfor %}
Marc Plane Type Day of Crash
{{ x }} {{ x.plane_type }} {{ x.date_of_crash }}
{% for x in object.get_persons.all %} {% endfor %}
Person relation type Day of Arrival
{{ x.related_person }} {{ x.relation_type }} {{ x.start_date }}
{% for x in object.place_located.all %} {% endfor %}
Name station_id station_type
{{ x.name }} {{ x.station_id }} {{ x.station_type }}
{% for x in object.is_target.all %} {% endfor %}
Date Target
{{ x.date }} {{ x.target }}
{% for x in object.is_birthplace.all %} {% endfor %}
Date Person
{{ x.date_of_birth }} {{ x.written_name }}
{% endblock custom%}