{% from "_formhelpers.html" import render_field %} {% extends "base.html" %} {% block title %}Homepage Configuration{% endblock %} {% block menu_items %}
  • Homepage
  • View Gables Data
  • View Other Data
  • About Us
  • Contact Us
  • Admin
  • {% endblock %} {% block content %}
    << Cancel

    Editing Homepage Locations

    {{ form.hidden_tag() }}

    Islands of Cocoplum

    {{ render_field(form.cocoplum_hydrovu_id) }}
    {{ render_field(form.cocoplum_boat_clearance_equation) }}
    {{ render_field(form.cocoplum_water_depth_equation) }}
    {{ render_field(form.cocoplum_depth_min) }} {{ render_field(form.cocoplum_depth_max) }}
    {{ render_field(form.cocoplum_salinity_min) }} {{ render_field(form.cocoplum_salinity_max) }}


    Blue Road

    {{ render_field(form.blueroad_hydrovu_id) }}
    {{ render_field(form.blueroad_boat_clearance_equation) }}
    {{ render_field(form.blueroad_water_depth_equation) }}
    {{ render_field(form.blueroad_depth_min) }} {{ render_field(form.blueroad_depth_max) }}
    {{ render_field(form.blueroad_salinity_min) }} {{ render_field(form.blueroad_salinity_max) }}


    Note: For the equations, use the letter "x" as the variable, which represents the water depth for the location.
    "x" should be in meters, and the equation should also return a result in meters.
    Use +, -, *, and / for addition, subtraction, multiplication, and division, respectively.

    {% endblock %}