Jquery selector on Django loop

Jquery selector on Django loop

So I have this

I need to select the items name when the user clicks on the anadir_button.

Something like

$('.producto_precio').last()clone().appendTo('#list_pedidos');

But this one just selects almendras, bananas and bolson frutal
  1. {% for producto in reparto_martes %}
  2.        <div class="col-md-3">
  3.         <div class="card mb-4 box-shadow product-box">
  4.           <img class="card-img-top product-photo" data-src="holder.js/100px225?theme=thumb&amp;bg=55595c&amp;fg=eceeef&amp;text=Thumbnail" alt="Thumbnail [100%x225]" style="height: 225px; width: 100%; display: block;" src={{ producto.foto }} data-holder-rendered="true">
  5.           <div class="card-body">
  6.             <h4 class="card-text producto_precio">${{ producto.precio }}</h4>
  7.             <h5 class="card-text producto_nombre">{{ producto.nombre }}</h5>
  8.             <div class="d-flex justify-content-between align-items-center">
  9.               <button type="button" class="btn btn-success anadir_button">Añadir</button>
  10.               <small class="text-muted"></small>
  11.             </div>
  12.           </div>
  13.         </div>
  14.       </div>
  15. {% endfor %}