{% extends "wagtailadmin/base.html" %} {% load i18n %} {% load wagtailadmin_tags %} {% block titletag %}{% trans "Import Cities from GeoNames" %}{% endblock %} {% block content %} {% trans "Import Cities from GeoNames" as header_str %} {% include "wagtailadmin/shared/header.html" with title=header_str icon="globe" %}
{% csrf_token %} {% if form.non_field_errors %}
{% include "wagtailadmin/shared/non_field_errors.html" with form=form %}
{% endif %}
    {% for field in form %} {% include "wagtailadmin/shared/field.html" %} {% endfor %}
  • {% if preview %} {% endif %}
{% if preview %}
{% blocktrans count counter=places|length %} {{ counter }} city will be imported. Review the list, then click "Import". {% plural %} {{ counter }} cities will be imported. Review the list, then click "Import". {% endblocktrans %}
{% for place in places %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Type" %} {% trans "Region" %} {% trans "Population" %} {% trans "Latitude" %} {% trans "Longitude" %}
{{ place.name }} {{ place.feature_code }} {{ place.admin_name }} {{ place.population }} {{ place.lat }} {{ place.lon }}
{% trans "No cities found for this country." %}
{% endif %}
{% endblock %}