From e8ca3abe20f4ad04fa6787f15f7bc8e8fdc4d997 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 10 Jan 2018 20:30:43 +0100 Subject: [PATCH] added messaging on tasks status --- rowers/views.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rowers/views.py b/rowers/views.py index 7fc445ae..1e9abb42 100644 --- a/rowers/views.py +++ b/rowers/views.py @@ -4126,7 +4126,7 @@ def otwrankings_view(request,theuser=0, request.session['async_tasks'] += [(job.id,'updatecpwater')] except KeyError: request.session['async_tasks'] = [(job.id,'updatecpwater')] - messages.info(request,'New calculation queued. Refresh page or resubmit the date form to get the result') + messages.info(request,'New calculation queued. Page will reload automatically. You can check the status of your calculations here') powerdf = pd.DataFrame({ 'Delta':delta, @@ -4134,7 +4134,7 @@ def otwrankings_view(request,theuser=0, }) if powerdf.empty: - messages.info(request,'Your calculations are running in the background. Please reload this page.') + messages.info(request,'Your calculations are running in the background. Page will reload automatically. You can check the status of your calculations here') powerdf = powerdf[powerdf['CP']>0] powerdf.dropna(axis=0,inplace=True) @@ -4377,7 +4377,7 @@ def oterankings_view(request,theuser=0, request.session['async_tasks'] += [(job.id,'updatecp')] except KeyError: request.session['async_tasks'] = [(job.id,'updatecp')] - messages.info(request,'New calculation queued.') + messages.info(request,'New calculation queued. Page will reload automatically. You can check the status of your calculations here') powerdf = pd.DataFrame({ 'Delta':delta, @@ -4385,7 +4385,7 @@ def oterankings_view(request,theuser=0, }) if powerdf.empty: - messages.info(request,'Your calculations are running in the background. Please reload this page.') + messages.info(request,'Your calculations are running in the background. Page will reload automatically. You can check the status of your calculations here') powerdf = powerdf[powerdf['CP']>0] powerdf.dropna(axis=0,inplace=True) @@ -6878,7 +6878,7 @@ def workout_otwsetpower_view(request,id=0,message="",successmessage=""): except KeyError: request.session['async_tasks'] = [(job.id,'otwsetpower')] - successmessage = 'Your calculations have been submitted. You will receive an email when they are done. You can check the status of your calculations here' + successmessage = 'Your calculations have been submitted. You will receive an email when they are done. You can check the status of your calculations here' messages.info(request,successmessage) kwargs = { 'id':int(id)}