I have added my view and template codes below. MY question, how can i get bird( model 1) and respective bird's details(model2) --------view------
all_birds = Bird.objects.all()
detail = Detail.objects.all()
template = loader.get_template('bird/bird.html')
contex = {
    'all_birds': all_birds,
    'details': detail,
}
return HttpResponse(template.render(contex, request))
--------template----------
{% for birds in all_birds %}
        <div class="container">
            <div class="row">
                  <div id="board" data-columns>
                    <div class="item">
                        <div class="ani-box">
                            <a href="{% static 'bird/images/img_10.jpg'%}" class="image-popup fh5co-board-img">
                                 <img src="{% static 'bird/images/img_10.jpg'%}" alt="No Image available"></a>
                        </div>
                    </div>
                  </div>
             </div>
        </div>
    {% endfor %}
 
    