You can pass the range from the view to the template and then loop through that. Referencing this SO answer:
View:
render_to_response('template.html', {..., 'stars': range(review.stars), ...}, ...)
Template:
{% for n in stars %} # add star icon{% endfor %}