fixes
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user