bookwyrm/bookwyrm/templatetags/stars.py

12 lines
237 B
Python
Raw Normal View History

2021-09-10 21:41:55 +00:00
""" 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"