{% from "_formhelpers.html" import render_field, render_checkboxes, render_errors %} {% extends "base.html" %} {% block title %}View API data{% endblock %} {% block menu_items %}
  • Homepage
  • {% if only_gables %}
  • View Gables Data
  • View Other Data
  • {% else %}
  • View Gables Data
  • View Other Data
  • {% endif %}
  • About Us
  • Contact Us
  • Admin
  • {% endblock %} {% block content %}

    View data from the Tide Aware API.
    {% if provisional %} {% if only_gables %} Currently viewing the provisional data for coral gables locations. You can view the corrected data here. {% else %} Currently viewing the provisional data for locations not in coral gables. You can view the corrected data here. {% endif %} {% else %} {% if only_gables %} Currently viewing the corrected data for coral gables locations. You can view the provisional data here. {% else %} Currently viewing the corrected data for locations not in coral gables. You can view the provisional data here. {% endif %} {% endif %}

    {{ form.hidden_tag() }}
    {{ render_field(form.location) }}
    {{ render_checkboxes(form.parameters, descriptions) }}
    {{ render_field(form.start_date) }}

    {{ render_field(form.end_date) }}
    {{ render_errors([error]) }}
    {% if location_description %}

    {{ location_description }}

    {% endif %} {% if plots and not form.errors and not error %}
    {% for plot in plots %}

    {% endfor %}
    {% if download_form %}
    {% endif %} {% endif %} CORAL GABLES WEATHER
    {% endblock %}