モデルの単一のフィールドからすべての要素に対して操作を実行しようとしていますが、エラーが発生します。
list indices must be integers, not tuple
これがviews.pyの私のインデックス関数です:
design_list = Design.objects.values_list().order_by('-date_submitted')[:10]
x=list(design_list)
for i in x:
b = list(x[i]) # ERROR RELATES TO THIS LINE
c = b[2]
b[2] = datetimeConvertToHumanReadable(c)
new_list[i] = b
return render_to_response('index.html', {
'design_list': new_list,
})
これはよくある問題だと思いますが、私が間違っていることを誰かが知っていますか?