0

このプラグインを使用しています

URLに誤りがあったので変更しました

<a class="liker" href="{% url like content_type content_obj.id 1 %}" rel="nofollow">I Like</a>`

<a class="liker" href="{% url 'like' content_type content_obj.id 1 %}" rel="nofollow">I Like</a>

この修正で推奨されているとおりですが、まだこのエラーが発生します

引数 '(u'snippets-snippets', None, 1)' およびキーワード引数 '{}' を持つ 'like' の逆が見つかりません。

編集: これはアプリの urls.py です

urlpatterns = patterns(
    'likes.views',
    url(r'^like/(?P<content_type>[\w-]+)/(?P<id>\d+)/(?P<vote>-?\d+)$', 'like',
        name='like'),
)

私のurls.pyには単にそれが含まれています

urlpatterns = patterns('snippets.views',
    (r'^likes/', include('likes.urls')),
)
4

1 に答える 1