Boston Python Workshop/Saturday/Web app project: Difference between revisions

Line 551:
return HttpResponse(output)
 
There's a problem here, though: The page's design is hard-coded in the view. If you want to change the way the page looks, you'll have to edit this Python code. So let's use Django's template system to separate the design from Python. Continue editing views.py:
 
from django.shortcuts import render_to_response
Anonymous user