{% extends "base.html" %} {% block title %}Simple Fileupload (GPX files){% endblock %} {% block content %} {% if folder %}

Upload GPX files into /gpslogs/{{folder}}/

{% else %}

Upload GPX files into /gpslogs/{{year}}/

{% endif %}
{% csrf_token %}







{% if filesaved %}

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

{% endif %} Files:
{% for f in files %} {{f}}
{% empty %}

<No files here> {% endfor %}

Prospector Directories:
{% if folder %} [up]
{% endif %} {% for f in dirs %} /{{f}}/
{% empty %}

<No subdirectories> {% endfor %}

{% if folder %}

You can upload your GPX tracks here.

You cannot create sub-folders here.

Note that only GPX files are accepted: all other types of files are refused. {% else %}

You can upload your GPX tracks to any of these folders, and you can create a new folder in your name for your gpslogs.

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


Create new prospector folder in /gpslogs/{{year}}/

{% csrf_token %}



{% endif %}


{% endblock %}