{% extends "wagtailadmin/base.html" %} {% load i18n %} {% load l10n %} {% load wagtailadmin_tags wagtailimages_tags static %} {% block titletag %}{% blocktrans with title=page.get_admin_display_title %}Stations Data{{ title }} {% endblocktrans %}{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block content %} {% trans "Stations Data" as header_str %} {% include "wagtailadmin/shared/header.html" with title=header_str icon="map" action_url=load_stations_url action_text="Load Stations" %}
{% if station_columns %}

Data Fields

{% for column in station_columns %} {% endfor %}
Field Label Show in Table Show in Popup
{{ column.name }}
{% if form.non_field_errors %}
{% include "wagtailadmin/shared/non_field_errors.html" with form=form %}
{% endif %}
    {% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% include "wagtailadmin/shared/field_as_li.html" %} {% endif %} {% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}