Skip to content

Instantly share code, notes, and snippets.

@gleitz
Created April 26, 2012 01:08
Show Gist options
  • Save gleitz/2494965 to your computer and use it in GitHub Desktop.
Save gleitz/2494965 to your computer and use it in GitHub Desktop.
NExtStep info
def nextstep_test(request):
students = [{'name': 'Facundo',
'pizza': 'cinnamon bananas',
'has_won_lottery': True},
{'name': 'Ryan',
'pizza': 'cabbage',
'secret_ability': 'elephant whispering'},
{'name': 'Luke',
'pizza': 'watermelon',
'secret_ability': 'freestyle sleeping'}
]
args = {'students': students}
return render_response('test.html', args, request)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment