]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/people/modules/mos.html
donation: Fix typo
[ipfire.org.git] / src / templates / people / modules / mos.html
CommitLineData
68ece434
MT
1{% if call.mos %}
2 <span class="small text-muted" title="{{ "%.2f" % call.mos }}/5">
c2521dbf 3 {% for i in range(5) %}
68ece434
MT
4 {% if call.mos > (i + 0.5) %}
5 <span class="fas fa-star"></span>
6 {% elif call.mos > i %}
7 <span class="fas fa-star-half-alt"></span>
8 {% else %}
9 <span class="far fa-star"></span>
10 {% end %}
11 {% end %}
12 </span>
13{% end %}