以下のようにcontextに辞書を設置し複数明細を表示させたいのですが
この書き方だとquerysetの最後の1明細行しか出力されません。
querysetの全部の明細行をcontextを使って表示するテクニックをご教示ください。
よろしくお願いします。
Python/Django(viwes.py)
1 2 for i in query_set: 3 id_2 = i.id 4 men_id_2 = i.men_id 5 context['n_list'] = [ 6 { 7 'relation': relationship, 8 'a_relation': r_type, 9 'in_id': in_id_2, 10 'AC': { 11 'is_match': AC_match, 12 'value': AC_value 13 }, 14 'A2': { 15 'is_match': A2_match, 16 'value': A2_value 17 }, 18 'AC': { 19 'is_match': AC_match, 20 'value': AC_value 21 } 22 } 23 ] 24 25 26 return context 27
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。