私のDjango 1.1.1アプリケーションで私は彼のテンプレートに数値の範囲と項目のリストのリストを返すビューに関数があります。例えば:
...
data=[[item1 , item2, item3], [item4, item5, item6], [item7, item8, item9]]
return render_to_response('page.html', {'data':data, 'cycle':range(0,len(data)-1])
テンプレート内に外部のforループがあります。これには、このようにデータの内部リストの内容を含む出力に表示する別のforサイクルも含まれています
...
{% for page in cycle %}
...
< table >
{% for item in data.forloop.counter0 %}
< tr >< td >{{item.a}} < /td > < td > {{item.b}} ... < /td > < /tr >
...
< /table >
{% endfor %}
{% if not forloop.last %}
< div class="page_break_div" >
{% endif %}
{% endfor %}
...
しかし、Djangoテンプレートエンジンは、リストのインデックスとしてforloop.counter0
値を処理しません(代わりに手動で数値をインデックスとして入力した場合は機能します)。リストループが外部のforloop.counter0
値で機能するようにしますか?助けてくれてありがとう:)
属性名、辞書キー、リストインデックスに変数を使用することはできません。
また、range(0,len(data)-1]
は有効なpythonではありません。 range(len(data))
である必要があります。
おそらくcycle
は必要ありません。多分あなたが欲しいのはこれです:
{% for itemlist in data %}
...
<table>
{% for item in itemlist %}
<tr>
<td>{{ item.a }}</td>
<td>{{ item.b }} ... </td>
</tr>
...
{% endfor %}
</table>
{% if not forloop.last %}
<div class="page_break_div">
{% endif %}
{% endfor %}
私はこれをかなり非効率的な方法で解決しました。このコードを読んでいるときに、コンピュータに手を出さないでください。同じ長さの2つのリストを指定すると、最初のリストを反復処理し、2番目のリストから対応するアイテムを出力します。
これを使用する必要がある場合は、両方のリストの長さが短い、ほとんどアクセスされないテンプレートにのみ使用してください。理想的には、この問題を完全に回避するために、テンプレートのデータをリファクタリングします。
{% for list1item in list1 %}
{% for list2item in list2 %}
{% if forloop.counter == forloop.parentloop.counter %}
{{ list1item }} {{ list2item }}
{% endif %}
{% endfor %}
{% endfor %}
True/False値の切り替えのリストを渡すことにより、スタイルシートを使用してテーブルに交互の色を設定する必要がありました。これは本当にイライラしました。最後に、テーブルのフィールドと同じキーを持つ辞書項目のリストを作成し、さらに1つをtrue/false値の切り替えで作成しました。
def jobListView(request):
# Django does not allow you to append stuff to the job identity, neither
# will it allow forloop.counter to index another list. The only solution
# is to have the toggle embedded in a dictionary along with
# every field from the job
j = job.objects.order_by('-priority')
# have a toggling true/false list for alternating colours in the table
theTog = True
jobList = []
for i in j:
myJob = {}
myJob['id'] = i.id
myJob['duty'] = i.duty
myJob['updated'] = i.updated
myJob['priority'] = i.priority
myJob['description'] = i.description
myJob['toggle'] = theTog
jobList.append(myJob)
theTog = not(theTog)
# next i
return render_to_response('index.html', locals())
# end jobDetaiView
そして私のテンプレート
{% if jobList %}
<table border="1"><tr>
<th>Job ID</th><th>Duty</th><th>Updated</th><th>Priority</th><th>Description</th>
</tr>
{% for myJob in jobList %}
<!-- only show jobs that are not closed and have a positive priority. -->
{% if myJob.priority and not myJob.closeDate %}
<!-- alternate colours with the classes defined in the style sheet -->
{% if myJob.toggle %}
<tr class=d1>
{% else %}
<tr class=d0>
{% endif %}
<td><a href="/jobs/{{ myJob.id }}/">{{ myJob.id }}</td><td>{{ myJob.duty }}</td>
<td>{{ myJob.updated }}</td><td>{{ myJob.priority }}</td>
<td class=middle>{{ myJob.description }}</td>
</tr>
{% endif %}
{% endfor %}
</ul>
{% else %}
<p>No jobs are in the system.</p>
{% endif %}