﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11870	Moderation doesn't work with comments extended from BaseCommentAbstractModel	HM	nobody	"CommentFlag has a hardcoded foreign key to django.contrib.comments.models.Comment and thus the moderation-bits of django.contrib.comments cannot be used when inheriting directly from BaseCommentAbstractModel.

Either this should be mentioned in the documentation or CommentFlag should have a

{{{ 
    import comments
    ...
    comment   = models.ForeignKey(comments.get_model(), verbose_name=_('comment'), related_name=""flags"")
}}}

instead of 

{{{
    comment   = models.ForeignKey(Comment, verbose_name=_('comment'), related_name=""flags"")
}}}"	Bug	closed	contrib.comments	dev	Normal	wontfix	moderation	brian@…	Accepted	0	0	1	1	0	0
