Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2020-07-15 22:52:39 +02:00
parent aa01b60e8e
commit 26c8a0be70

View File

@@ -6,31 +6,30 @@
<h1>Import and Export Settings for {{ rower.user.first_name }} {{ rower.user.last_name }}</h1> <h1>Import and Export Settings for {{ rower.user.first_name }} {{ rower.user.last_name }}</h1>
<p>You are currently connected to: <p>You are currently connected to:
{% if r.c2token %} {% if rower.c2token is not None %}
Concept2 Logbook, Concept2 Logbook,
{% endif %} {% endif %}
{% if r.sporttrackstoken %} {% if rower.sporttrackstoken is not None %}
SportTracks, SportTracks,
{% endif %} {% endif %}
{% if r.underarmourtoken %} {% if rower.underarmourtoken is not None %}
Under Armour (MapMyFitness), Under Armour (MapMyFitness),
{% endif %} {% endif %}
{% if r.tptoken %} {% if rower.tptoken is not None %}
TrainingPeaks, TrainingPeaks,
{% endif %} {% endif %}
{% if r.polartoken %} {% if rower.polartoken is not None %}
Polar, Polar,
{% endif %} {% endif %}
{% if r.garmintoken %} {% if rower.garmintoken is not None %}
Garmin Connect, Garmin Connect,
{% endif %} {% endif %}
{% if r.stravatoken %} {% if rower.stravatoken is not None %}
Strava, Strava,
{% endif %} {% endif %}
{% if r.runkeepertoken %} {% if rower.runkeepertoken is not None %}
Runkeeper. Runkeeper.
{% endif %} {% endif %}
Strava,
</p> </p>
{% if form.errors %} {% if form.errors %}