Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @app.template_filter('stars')
  2. def _jinja2_filter_stars(value):
  3.     """
  4.    Adds filled and empty stars
  5.    Usage: {{ obj.stars|stars|safe }}
  6.    """
  7.     ret = ""
  8.     if value:
  9.         for i in range(1, value+1):
  10.             ret += '<i class="icon-star"></i>'
  11.            
  12.         for i in range(value, 5):
  13.             ret += '<i class="icon-star-empty"></i>'
  14.     return ret