How do I add review star code under the product price?

I am trying to add the code for review stars, Id like it to come up under the price but I am not sure how to add it.

This is the example of where it should go.

Where would I add it in here?

{% if on_sale %}
{% if settings.enable_quick_shop %} {{ product.variants[0].compare_at_price | money }} {{ product.variants[0].price | money }} {% else %} {{ product.compare_at_price_min | money }} {% if product.price_varies %}{% render 'varies_from' %}{% endif %}{{ product.price_min | money }} {% endif %}
{% else %} {% if settings.enable_quick_shop %}
{{ product.variants[0].price | money }}
{% else %}
{% if product.price_varies %}{% render 'varies_from' %}{% endif %}{{ product.price_min | money }}
{% endif %} {% endif %}