61
Not any shorter, but you could use first
:
{% with entry.image_set.all|first as image %}
<img src="{{ image.get_absolute_url }}">
{% endwith %}
- [Django]-Django Admin – Overriding the widget of a custom form field
- [Django]-How to automate createsuperuser on django?
- [Django]-Setting the selected value on a Django forms.ChoiceField
- [Django]-Amazon SES SMTP with Django
- [Django]-Access web server on VirtualBox/Vagrant machine from host browser?
- [Django]-Django's ModelForm unique_together validation
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
- [Django]-How to solve "Page not found (404)" error in Django?
- [Django]-How do i debug/breakpoint my django app using pycharm?
- [Django]-Access django models inside of Scrapy
Source:stackexchange.com