Private
Public Access
1
0

Merge branch 'develop' into feature/embeddedvideo

This commit is contained in:
Sander Roosendaal
2019-11-19 08:02:21 +01:00
3 changed files with 23 additions and 7 deletions

View File

@@ -2906,7 +2906,12 @@ def workout_data_view(request, id=0):
else:
form = DataFrameColumnsForm(initial = {'cols':tcols})
datadf = datadf[tcols]
try:
datadf = datadf[tcols]
except KeyError:
tcols = list(set(datadf.columns(tolist)+tcols))
datadf = datadf[tcols]
datadf = datadf.fillna(value=0)
for col in cols:
try: