lazy loads trend flex, boxplot, cum_flex
This commit is contained in:
@@ -57,6 +57,32 @@ defaultleft = [
|
||||
'panel_staticchart.html',
|
||||
]
|
||||
|
||||
coxes_calls = [
|
||||
'Sit Ready!',
|
||||
"Let's relax the shoulders, and give me a power ten to the finish!",
|
||||
"Almost there. Give me ten strokes on the legs!",
|
||||
"Let it run!",
|
||||
]
|
||||
|
||||
info_calls = [
|
||||
"Please give us a minute to count all those strokes, you've been working hard!",
|
||||
"Please give us a minute to count all your strokes."
|
||||
]
|
||||
|
||||
import random
|
||||
|
||||
def get_call():
|
||||
call1 = random.choice(coxes_calls)
|
||||
call2 = random.choice(info_calls)
|
||||
|
||||
call = """<div id="id_sitready" class="successmessage">
|
||||
<p>
|
||||
%s (%s)
|
||||
</p>
|
||||
</div>
|
||||
""" % (call1, call2)
|
||||
|
||||
return call
|
||||
|
||||
def absolute(request):
|
||||
urls = {
|
||||
|
||||
Reference in New Issue
Block a user