コンテキスト ディクショナリがテンプレートに送信されません。私は機能を持っています
from django.shortcuts import render_to_response
from django.template import RequestContext
def home(request):
return render_to_response('home.html',{'test':'test'},context_instance=RequestContext(request))
そして、私は次のような単純なテンプレートを持っています:
<html>
<body>
my test == {{test}}
</body>
</html>
ブラウザでサイトを開くと、「my test ==」があります。settings.py がデフォルトです。私はカスタムのものを使用しません。何の問題?サーバーは wsgi モジュールを備えた apache です。