first holoview chart
This commit is contained in:
@@ -4586,10 +4586,13 @@ def workout_split_view(request,id=0):
|
||||
url = reverse('workouts_view')
|
||||
|
||||
rowname = row.name
|
||||
if isinstance(rowname,unicode):
|
||||
rowname = rowname.encode('utf8')
|
||||
elif isinstance(rowname, str):
|
||||
rowname = rowname.decode('utf8')
|
||||
try:
|
||||
if isinstance(rowname,unicode):
|
||||
rowname = rowname.encode('utf8')
|
||||
elif isinstance(rowname, str):
|
||||
rowname = rowname.decode('utf8')
|
||||
except:
|
||||
pass
|
||||
|
||||
qdict = {'q':rowname}
|
||||
url+='?'+urllib.urlencode(qdict)
|
||||
|
||||
Reference in New Issue
Block a user