{% extends "base.html" %} {% block title %}Upload GPX file for a *fix{% endblock %} {% block content %}

Upload GPX file for a *fix

{% csrf_token %}








{% if filesaved %}

File(s) saved as
{% for f in actual_saved %} {{f}}
{% endfor %}

{% endif %}

Files already here: in {{yearpath}}
{% for f in files %} {{f}}
{% empty %}

<No files here> {% endfor %}

You can upload your GPX track which will be averaged into a single *fix

Note that only GPX files are accepted: all other types of files are refused.


This GPX file has x locations of which y (_%) have been averaged to produce a a location:

{% for f in actual_saved %}
       
[{{ areacode }}]
{{ fixstring }}
{{ entrancestring }}

{% endfor %}


{% endblock %}