views.py:
def index(request): return render_to_response(\'index.html\', {}) def photos(request, artist): if not artist: r
You may need to explicitly pass in a RequestContext instance when you use render_to_response in order to get the CSRF values for that template tag.
http://lincolnloop.com/blog/2008/may/10/getting-requestcontext-your-templates/