Django = 2.0
我希望将此应用添加到我的项目中 - https://github.com/pythonsd/test-driven-django-development/tree/master/myblog
它对我有用,但我不需要评论 我无法弄清楚如何删除这些评论。在HTML中我知道如何删除它,但我想从模型和视图中删除注释,我希望在我的项目中有干净的代码。
https://github.com/pythonsd/test-driven-django-development/blob/master/myblog/blog/models.py - 我要删除课程Comment(models.Model)
,对吧?我想是的。
https://github.com/pythonsd/test-driven-django-development/blob/master/myblog/blog/views.py - 但是如果我的blog-app
中没有评论,我需要从文件中删除哪些内容?
非常感谢你。
答案 0 :(得分:0)
class EntryDetail(DetailView):
model = Entry
template_name = 'test/blog-detail.html'
def get_success_url(self):
return self.get_object().get_absolute_url()
这是工作。