[Answer]-Django passing multiple values to html page

1👍

The context is a single dictionary:

render_to_response('registration/home.html', {'latest': latest, 'popular': popular})

This is really basic Python. You should do a tutorial.

Leave a comment