I want to do this:
100 - {{ object.article.rating_score }}
So for example, the output would be 20 if {{ object.article.
20
{{ object.article.
You can use the add filter:
{{ object.article.rating_score|add:"-100" }}