[Answer]-Why do the django-voting template tags not work?

1👍

Template tags are different from template context processors. Have you loaded the template tag?

{% load voting_tags %} 

Note that {% load voting_tags.py %} is incorrect also.

👤okm

Leave a comment