views.py:
def index(request): return render_to_response(\'index.html\', {}) def photos(request, artist): if not artist: r
Check in the settings, if you have this middleware:
'django.middleware.csrf.CsrfViewMiddleware'
https://docs.djangoproject.com/en/dev/ref/contrib/csrf/