1
で辞書から値を取得する簡単な方法を探しています:私は次のような状況持っているテンプレート
{% if accounts.count > 0 %}
{% for account in accounts %}
<div>Balance:<b>{{ my_dict.account.id }}</b></div>
<div><a href="/edit/{{ account.id }}"><button>Edit</button></a></div>
{% endfor %}
{% else %}
<p>...</p>
{% endif %}
を。
このような構成は
my_dict.account
OKですしかし、私はそのようなことをやります。私は2つのドット
my_dict.account.id
がこれを行うにはどのような方法がありますか?それは
に(それはIDをアカウントです?)のキーが何であるか:テンプレートで変数を作成するには良いでしょうが、それは私のために動作しません
「my_dict」は何ですか? – ozgur
[Djangoテンプレートの重複可能性]変数で辞書値を検索する方法(http://stackoverflow.com/questions/8000022/django-template-how-to-look-up-a-dictionary-value-with -a-variable) – Geotob
私自身のフィルタを作成したくありません。これは同じものではありません – programmerJavaPL