{% extends "newbase.html" %} {% block title %}Change Rower Export Settings{% endblock %} {% block main %}

Import and Export Settings for {{ rower.user.first_name }} {{ rower.user.last_name }}

{% csrf_token %}
  • You are currently connected to: {% if rower.c2token is not None and rower.c2token != '' %} Concept2 Logbook, {% endif %} {% if rower.nktoken is not None and rower.nktoken != '' %} NK Logbook, {% endif %} {% if rower.sporttrackstoken is not None and rower.sporttrackstoken != '' %} SportTracks, {% endif %} {% if rower.tptoken is not None and rower.tptoken != '' %} TrainingPeaks, {% endif %} {% if rower.polartoken is not None and rower.polartoken != '' %} Polar, {% endif %} {% if rower.stravatoken is not None and rower.stravatoken != '' %} Strava, {% endif %} {% if rower.rp3token is not None and rower.rp3token != '' %} RP3, {% endif %} {% if rower.rojabo_token is not None and rower.rojabo_token != '' %} Rojabo, {% endif %} {% if rower.intervals_token is not None and rower.intervals_token != '' %} Intervals.icu {% endif %}

    Click on the icons to establish the connection or to renew the authorization.

    By default, imported workouts are set to have a public URL. However, new workouts can be set to private by default with the following setting: {{ forms.imports_are_private.as_table }}

  • API Key

    {{ apikey }}

    Regenerate

    This API key can be used to access the Rowsandall API. It is used by some third party applications to access your data. Keep it secret.

  • {% if form.errors %}
  • Please correct the error{{ form.errors|pluralize }} below.

  • {% endif %}
  • NK

    {{ forms.nk.as_table }}

    connect with NK Logbook

  • Concept2

    {{ forms.c2.as_table }}

    connect with Concept2

  • RP3

    {{ forms.rp3.as_table }}

    connect with RP3

  • Rojabo

    connect with Rojabo

  • Intervals.icu

    {{ forms.intervals.as_table }}

    connect with intervals.icu

  • SportTracks

    {{ forms.sporttracks.as_table }}

    connect with SportTracks

  • TrainingPeaks

    {{ forms.trainingpeaks.as_table }}

    connect with Polar

  • Polar

    {{ forms.polar.as_table }}

    connect with Polar

  • Strava

    Warning: API restrictions!

    {{ forms.strava.as_p }}

    connect with strava

    Strava Auto Import also imports activity changes on Strava to Rowsandall, except when you delete a workout on Strava. If you want Deletions to propagate to Rowsandall, tick the Strava Auto Delete check box.

    {% if rower.stravatoken and rower.stravatoken != '' %}

    You are connected to Strava. Workouts imported from Strava will not be synced to other platforms and the data will only be visible to you, not your team members or coaches. We have to respect the terms and conditions of the Strava API, which do not allow us to sync data to other platforms or to share the data with others.

    {% endif %}
  • {% if grants %}
  • Applications

    These applications have access to your Rowsandall data.

    {% for grant in grants %} {% endfor %}
    Application Scope Revoke
    {{ grant.application }} {{ grant.scope }} Revoke
  • {% endif %} {% if apps %} {% for app in apps %}
  • {{ app.name }}

    Client ID: {{ app.client_id }}

    Redirect URIs: {{ app.redirect_uris }}

    Client Type: {{ app.client_type }}

    Authorization grant type: {{ app.authorization_grant_type }}

    Allowed origins: {{ app.allowed_origins }}

  • {% endfor %} {% endif %} {% if user.is_staff %}
  • Admin

    iDoklad authorize

  • {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_profile.html' %} {% endblock %}