Как вывести изображения в background-image в style в теге div class="registryImage"?
Нужно вывести первый элемент photo
{% get_gallerys_list as gallerys_list %}
{% for gallerys in gallerys_list %}
<div class="one-third column">
<div class="registryImage" style="background-image: url({{ gallerys.photo.image.url|first }});">
{% for photo in gallerys.photo_set.all %}
<a class="registryLink" href="{{ photo.image.url }}" rel="prettyPhoto[{{ gallerys.pk }}]" title="{{ photo.title }}">{{ gallerys.title }}</a>
{% endfor %}
</div>
</div>
{% endfor %}