[Django]-Get first item of QuerySet in template

61👍

✅

Not any shorter, but you could use first:

{% with entry.image_set.all|first as image %}
  <img src="{{ image.get_absolute_url }}">
{% endwith %}

15👍

Since Django 1.6 you can do

<img src="{{ entry.image_set.first.get_absolute_url }}">

2👍

You also can do:
entry.image_set.all.0 in your template.

1👍

I was having the following queryset I just want to retrieve first element from it in jinja template.

<QuerySet [<StudentDetails: StudentDetails object (1)>, <StudentDetails: StudentDetails object (2)>]>

Solution

{{ StudentDetails.first.name }}

StudentDetails is my model

Leave a comment