- return render(request, 'wtem/main.html')
\ No newline at end of file
+ ## @@ move this out of the view
+ f = file(os.path.dirname(__file__) + '/fixtures/exercises.json')
+ exercises = simplejson.loads(f.read())
+ f.close()
+
+ return render(request, 'wtem/main.html', dict(exercises = exercises))