[Django HTML şablonu şu an için dizini desteklemiyor], ancak hedefe ulaşabilirsiniz:
Eğer kullanırsanız Sözlük views.py içinde Sözlük içerisindeki sonra yineleme endeks olarak anahtar kullanılarak mümkündür. misal:
{% 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 %}
Kullanmak elseif listesi Sözlük sonra sadece ilk ve son yineleme iç kontrol edilebilir, ancak tüm indeks kontrol edilebilir. misal:
{% 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 %}
End If;)
// Umarım çözümü Sözlük, Liste, HTML şablonu, Döngü için, İç döngü, Else ise kapsamıştır. Daha fazla yöntem için Django HTML Belgeleri: https://docs.djangoproject.com/en/2.2/ref/templates/builtins/