added BC logo
This commit is contained in:
BIN
logos/bcsquare.png
Normal file
BIN
logos/bcsquare.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 926 B |
BIN
logos/boatcoachlogo.xcf
Normal file
BIN
logos/boatcoachlogo.xcf
Normal file
Binary file not shown.
@@ -16,13 +16,14 @@
|
|||||||
<li> CrewNerd (TCX)</li>
|
<li> CrewNerd (TCX)</li>
|
||||||
<li> Rowing In Motion (TCX)</li>
|
<li> Rowing In Motion (TCX)</li>
|
||||||
<li> Speedcoach XL (CSV)</li>
|
<li> Speedcoach XL (CSV)</li>
|
||||||
<li> Speedcoach GPS (FIT)</li></ul></p>
|
<li> Speedcoach GPS (FIT and CSV)</li></ul></p>
|
||||||
|
|
||||||
<p>Erg
|
<p>Erg
|
||||||
<ul>
|
<ul>
|
||||||
<li> Painsled (CSV)</li>
|
<li> Painsled (CSV)</li>
|
||||||
<li> ErgData (CSV export from Concept2 logbook)</li>
|
<li> ErgData (CSV export from Concept2 logbook)</li>
|
||||||
<li> RowPro (CSV)</li>
|
<li> RowPro (CSV)</li>
|
||||||
|
<li> BoatCoach (CSV)</li>
|
||||||
<li> ErgStick (CSV)</li></ul></p>
|
<li> ErgStick (CSV)</li></ul></p>
|
||||||
|
|
||||||
|
|
||||||
@@ -35,7 +36,7 @@
|
|||||||
<h2>Export Compatibility</h2>
|
<h2>Export Compatibility</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li> Concept2 Logbook: Exports stroke by stroke data for erg and OTW rowing</li>
|
<li> Concept2 Logbook: Exports stroke by stroke data for erg and OTW rowing</li>
|
||||||
<li> Strava: </li>
|
<li> Strava </li>
|
||||||
<li> SportTracks</li>
|
<li> SportTracks</li>
|
||||||
<li> email (TCX or CSV format)</li></ul></p>
|
<li> email (TCX or CSV format)</li></ul></p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -22,8 +22,9 @@
|
|||||||
<img src="/static/img/rimsquare.png" alt="RiM icon" width="30" height="30">
|
<img src="/static/img/rimsquare.png" alt="RiM icon" width="30" height="30">
|
||||||
<img src="/static/img/rpsquare.png" alt="RowPro icon" width="30" height="30">
|
<img src="/static/img/rpsquare.png" alt="RowPro icon" width="30" height="30">
|
||||||
<img src="/static/img/essquare.png" alt="ErgStick icon" width="30" height="30">
|
<img src="/static/img/essquare.png" alt="ErgStick icon" width="30" height="30">
|
||||||
|
<img src="/static/img/bcsquare.png" alt="BoatCoach icon" width="30" height="30">
|
||||||
<img src="/static/img/pssquare.png" alt="PainSled icon" width="30" height="30">
|
<img src="/static/img/pssquare.png" alt="PainSled icon" width="30" height="30">
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -3686,7 +3686,15 @@ def workout_getc2workout_view(request,c2id):
|
|||||||
res = c2stuff.get_c2_workout(request.user,c2id)
|
res = c2stuff.get_c2_workout(request.user,c2id)
|
||||||
if (res.status_code == 200):
|
if (res.status_code == 200):
|
||||||
data = res.json()['data']
|
data = res.json()['data']
|
||||||
res2 = c2stuff.get_c2_workout_strokes(request.user,c2id)
|
if data['stroke_data']:
|
||||||
|
res2 = c2stuff.get_c2_workout_strokes(request.user,c2id)
|
||||||
|
else:
|
||||||
|
message = "This workout does not have any stroke data associated with it"
|
||||||
|
url = reverse(workout_c2import_view,
|
||||||
|
kwargs={
|
||||||
|
'message':message,
|
||||||
|
})
|
||||||
|
return HttpResponseRedirect(url)
|
||||||
|
|
||||||
if res2.status_code == 200:
|
if res2.status_code == 200:
|
||||||
strokedata = pd.DataFrame.from_dict(res2.json()['data'])
|
strokedata = pd.DataFrame.from_dict(res2.json()['data'])
|
||||||
|
|||||||
BIN
static/img/bcsquare.png
Normal file
BIN
static/img/bcsquare.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.7 KiB |
Reference in New Issue
Block a user