在我的django项目上遇到了一个rant_category() got an unexpected keyword argument 'slug'
。基本上,我只需要在我的应用中获取#category
的slug即可在URL中显示。
这是我的代码:
views.py
class RantListView(ListView)
model = Rant
context_object_name = "rants"
template_name = "rants/rant_list.html"
class
for>