3 from django.shortcuts import render
4 from django.utils import simplejson
8 ## @@ move this out of the view
9 f = file(os.path.dirname(__file__) + '/fixtures/exercises.json')
10 exercises = simplejson.loads(f.read())
13 return render(request, 'wtem/main.html', dict(exercises = exercises))