Django version is 1.4. I had read the official document, and googled my problem.
official document
first I had followed the official document Managing static files added
Change
return render_to_response('register.html', 'errors':errors)
to
return render_to_response('register.html', {'errors': errors}, RequestContext(request))