I am using this plugin
There was an error with the url so I changed it from
<a class="liker" href="{% url like content_type content_obj.id 1 %}" rel="nofollow">I Like</a>`
to
<a class="liker" href="{% url 'like' content_type content_obj.id 1 %}" rel="nofollow">I Like</a>
as recommended in this fix but I am still getting this error
Reverse for 'like' with arguments '(u'snippets-snippets', None, 1)' and keyword arguments '{}' not found.
EDIT: This is the urls.py from the app
urlpatterns = patterns(
'likes.views',
url(r'^like/(?P<content_type>[\w-]+)/(?P<id>\d+)/(?P<vote>-?\d+)$', 'like',
name='like'),
)
My urls.py simply includes it
urlpatterns = patterns('snippets.views',
(r'^likes/', include('likes.urls')),
)