[Template HTML Django tidak mendukung indeks seperti sekarang], tetapi Anda dapat mencapai tujuannya:
Jika Anda menggunakan Kamus di dalam Kamus di views.py maka iterasi dimungkinkan menggunakan kunci sebagai indeks. contoh:
{% for key, value in DictionartResult.items %} <!-- dictionartResult is a dictionary having key value pair-->
<tr align="center">
<td bgcolor="Blue"><a href={{value.ProjectName}}><b>{{value.ProjectName}}</b></a></td>
<td> {{ value.atIndex0 }} </td> <!-- atIndex0 is a key which will have its value , you can treat this key as index to resolve-->
<td> {{ value.atIndex4 }} </td>
<td> {{ value.atIndex2 }} </td>
</tr>
{% endfor %}
Jika Anda menggunakan Daftar di dalam kamus, maka tidak hanya iterasi pertama dan terakhir yang dapat dikontrol, tetapi semua indeks dapat dikontrol. contoh:
{% for key, value in DictionaryResult.items %}
<tr align="center">
{% for project_data in value %}
{% if forloop.counter <= 13 %} <!-- Here you can control the iteration-->
{% if forloop.first %}
<td bgcolor="Blue"><a href={{project_data}}><b> {{ project_data }} </b></a></td> <!-- it will always refer to project_data[0]-->
{% else %}
<td> {{ project_data }} </td> <!-- it will refer to all items in project_data[] except at index [0]-->
{% endif %}
{% endif %}
{% endfor %}
</tr>
{% endfor %}
Berakhir jika ;)
// Harapan telah membahas solusi dengan Kamus, Daftar, templat HTML, Untuk Loop, Loop Dalam, Jika Lain. Django HTML Documentaion untuk metode lainnya: https://docs.djangoproject.com/en/2.2/ref/templates/builtins/