Skip to content

Commit

Permalink
map: Update select labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Parnell committed Nov 16, 2022
1 parent 405afdb commit f557858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cove_ofds/templates/cove_ofds/explore.html
Original file line number Diff line number Diff line change
Expand Up @@ -287,15 +287,15 @@ <h4 class="panel-title">
{% else %}
<p>{% trans 'The GeoJSON version of your data is visualised on the map below. You should check that nodes and spans appear in the correct location. If not, you should check that your coordinates are in longitude, latitude order. You may need to ' %}<a href="https://open-fibre-data-standard.readthedocs.io/en/0.1-dev/guidance/publication.html#how-to-transform-coordinates-to-the-correct-coordinate-reference-system">{% trans 'transform your coordinates to the correct coordinate reference system' %}</a>.</p>
<div class="form-group">
<label for="nodeFieldSelect">Select a Node data field for colourisation:</label>
<label for="nodeFieldSelect">Select a Node data field for colour-coding:</label>
<select class="form-control" id="nodeFieldSelect" onchange="generateMap(true)">
{% for field, label in nodes_fields.items %}
<option value="{{ field }}">{{ label }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<label for="spanFieldSelect">Select a Span data field for colourisation:</label>
<label for="spanFieldSelect">Select a Span data field for colour-coding:</label>
<select class="form-control" id="spanFieldSelect" onchange="generateMap(true)">
{% for field, label in spans_fields.items %}
<option value="{{ field }}">{{ label }}</option>
Expand Down

0 comments on commit f557858

Please sign in to comment.