trying to output the correct plural value in Django template when count is more than 1.
<p>{{ review.markers.helpful.count }} person{{ reviews.markers.helpful.count|length|pluralize }} found this helpful</p>
still returns 1 persons
or 2 persons
instead of 1 person
and 2 people
any help to fix this in the template?