Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2020-07-10 10:27:35 +02:00
parent ecb49a580e
commit a1a54be22d
2 changed files with 9 additions and 18 deletions

View File

@@ -47,7 +47,7 @@
<p>
The tools also provide the ability to review a row, stroke by stroke in plots versus time or distance. Basic plots in include HR, Pace, Stroke rate, and power for the erg.
</p>
<p>
The tools also provide a text summary of the row.
@@ -119,16 +119,16 @@
<p>
Some of our functionality is not related to a single workout, but instead
looks at comparisons, trends, statistics, and other. You can find all
that under the <a href="/rowers/analysis">Analysis Tab</a>.
that under the <a href="/rowers/analysis">Analysis Tab</a>.
</p>
<h2>On-line Racing</h2>
<h2>On-line Challenges</h2>
<p>
<a href="/rowers/virtualevents">On-line racing</a> is a
fun way to race other Rowsandall.com users
rowing on the same stretch of water.
<a href="/rowers/virtualevents">On-line challenges</a> are a
fun way to test your boat speed and course line against other Rowsandall.com users
rowing on the same stretch of water or on the Concept2 ergometer.
</p>
<h2>Training Plan</h2>
@@ -146,8 +146,8 @@
functionality related to interaction with your team, if you
are part of one.
</p>
</li>
<li class="grid_4">
<h2>Need more help?</h2>

View File

@@ -1035,11 +1035,7 @@ def garmin_summaries_view(request):
def garmin_newfiles_ping(request):
t = time.localtime()
timestamp = time.strftime('%b-%d-%Y_%H%M', t)
with open('garminlog.log','a') as f:
f.write('\n')
f.write(timestamp)
f.write(' ')
f.write(str(request.body))
if request.method != 'POST':
return HttpResponse(status=200)
@@ -1090,11 +1086,6 @@ def garmin_details_view(request):
t = time.localtime()
timestamp = time.strftime('%b-%d-%Y_%H%M', t)
with open('garminlog.log','a') as f:
f.write('\n')
f.write(timestamp)
f.write(' ')
f.write(str(request.body))
# POST request
data = json.loads(request.body)