bookwyrm/bookwyrm/templatetags/stars.py
2021-09-10 14:41:55 -07:00

12 lines
237 B
Python

""" template filters """
from django import template
register = template.Library()
@register.filter(name="half_star")
def get_half_star(value):
"""one of those things that's weirdly hard with templates"""
return f"{value}.5"