I am trying to create a list in bootstrap. It seems that justify-content-between is not working here. What am I doing wrong? (I want the $ aligned to the right)
<div class="row">
<div class="col-md-6">
<div class = "text-info">
<h5> Cambios </h5>
</div>
<ul class="list-group">
{% for c in cambios%}
<li class="list-group-item d-flex justify-content-between">
<div>
<h6 class="my-0">{{c['cantidad']}} {{c['producto']}}</h6>
<small class="text-muted"> X {{c['cambio_por']}}</small>
</div>
<span >{{ "${:,.0f}".format(c['diferencia']) }}/span>
<br>
</li>
{% endfor %}
</ul>
</div>
<div class="col-md-6">
</div>
</div>
