私は Django プロジェクトを多言語サイトに変えようとしています。そのためにcountries-for-django
( github ) パッケージを採用しようとしています。
テンプレートタグの 1 つで、コードはセッション変数django_country
(ここから取得) を読み取ろうとしていますが、Django 1.5request
はコンテキストから変数を読み取ることに失敗します。
Exception Type: AttributeError
Exception Value: 'NoneType' object has no attribute 'session'
template タグのコードは次のとおりです (コードは最初の投稿から拡張されています)。
class GetCurrentCountryNode(Node):
def __init__(self, variable):
self.variable = variable
def get_current_country(self, context):
from django.template import Context
return context.get('request').session.get('django_country')
def render(self, context):
context[self.variable] = self.get_current_country(context)
return ''
...
@register.tag("get_current_country")
def do_get_current_country(parser, token):
args = token.contents.split()
if len(args) != 3 or args[1] != 'as':
raise TemplateSyntaxError("'get_current_country' requires 'as variable' (got %r)" % args)
return GetCurrentCountryNode(args[2])
変数をcontext
出力すると、出力に変数が含まれませんrequest
。Django Toolbar
ただし、変数が存在することがわかります。
Django 1.5でコンテキスト変数の読み方が変わりましたか? ドキュメントには何も見つかりませんでした。
完全を期すために追加された Views.py とテンプレート。
ビュー.py
...
class StartView(FormView):
form_class = StartForm
template_name = 'home.html'
def form_valid(self, form):
self.request.session['address'] = form.cleaned_data['address']
return HttpResponseRedirect(reverse_lazy('new'))
...
home.html
{% load countries %}
{% get_current_country as country %}
{% get_available_countries as COUNTRIES %}
<head>
...