I am trying to redirect my view to a url with get request parameter but is error.
Reverse for 'article-detail-view' with arguments '(u'Django is a powerful web framework that can help you get your Python application or website off the ',)' and keyword arguments '{}' not found. 1 pattern(s) tried: ['article/(?P<slug>\\w+).html$']
Error during template rendering
{% for article in hot_article_list %}
<li class="list-group-item">
<span class="hotest-post-title"><a href="
{% url 'article-detail-view' article.en_title %}
">{{article.title}}</a> </span>
<span class="badge">{{article.view_times}}</span>
</li>
{% endfor %}
Url Pattern:
url(r'^$', IndexView.as_view(), name='index-view'),
url(r'^article/(?P<slug>\w+).html$',
ArticleView.as_view(), name='article-detail-view')
Please help me, thanks!