forloop count django code example

Example 1: for loop django template count

{% for item in item_list %}
    {{ forloop.counter }} # starting index 1
    {{ forloop.counter0 }} # starting index 0

    # do your stuff
{% endfor %}

Example 2: count gabarit django

#views.py
#You should instead pass places_count via the context to the template:
def places(request):
    places = Places.objects.order_by('-published_date')[:10]
    places_count = Places.objects.count()
    return render(
        request, 'templates/places.html', {'places':places, 'places_count': places_count}
    )
#in your templatee
<div class="container">
    <h2>Places <span class="badge">{{ places_count }}</span></h2>
</div>