Private
Public Access
1
0

bug fixes

This commit is contained in:
Sander Roosendaal
2020-03-28 10:54:29 +01:00
parent 7960c4d0f3
commit cace8b7061
4 changed files with 2527 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -21,6 +21,8 @@ from rowsandall_app.settings import (
RUNKEEPER_CLIENT_ID, RUNKEEPER_CLIENT_SECRET,RUNKEEPER_REDIRECT_URI, RUNKEEPER_CLIENT_ID, RUNKEEPER_CLIENT_SECRET,RUNKEEPER_REDIRECT_URI,
) )
from rowers.tasks import handle_runkeeper_sync
oauth_data = { oauth_data = {
'client_id': RUNKEEPER_CLIENT_ID, 'client_id': RUNKEEPER_CLIENT_ID,
'client_secret': RUNKEEPER_CLIENT_SECRET, 'client_secret': RUNKEEPER_CLIENT_SECRET,

View File

@@ -25,6 +25,7 @@ from rowsandall_app.settings import (
import rowers.mytypes as mytypes import rowers.mytypes as mytypes
from rowers.rower_rules import is_workout_user from rowers.rower_rules import is_workout_user
from rowers.tasks import handle_sporttracks_sync
oauth_data = { oauth_data = {
'client_id': SPORTTRACKS_CLIENT_ID, 'client_id': SPORTTRACKS_CLIENT_ID,

View File

@@ -85,7 +85,7 @@
<tr> <tr>
<td> {{ workout.date|date:"Y-m-d" }} </td> <td> {{ workout.date|date:"Y-m-d" }} </td>
<td> <td>
<a href="{% url manager.defaultlandingpage id=workout.id|encode %}"> <a href="{% url 'workout_view' id=workout.id|encode %}">
{{ workout.name }} {{ workout.name }}
</a> </a>
</td> </td>