使用ModelForm帮助django bugtrack评论系统

时间:2011-03-22 15:51:51

标签: python django comments bug-tracking django-forms

我正在尝试使用django向bug跟踪应用程序添加注释组件。我有一个用于评论的文本字段和一个按字段 - 由用户ID自动传播。

我希望在有人保存评论后,评论文本字段变为只读。我试过这几种方式。到目前为止,我提出的最佳方法是将我的Comment模型传递给ModelForm,然后使用表单窗口小部件属性将我的字段转换为只读。

models.py

class CommentForm(ModelForm):                                                 
    class Meta: 
        model = Comment
        exclude = ('ticket', 'submitted_date', 'modified_date')               
    def __init__(self, *args, **kwargs):
        super(CommentForm, self).__init__(*args, **kwargs)                    
        instance = getattr(self, 'instance', None)                            
        if instance and instance.id:
            self.fields['comments'].widget.attrs['readonly'] = True           

class Comment(models.Model):
    ticket = models.ForeignKey(Ticket)
    by = models.ForeignKey(User, null=True, blank=True, related_name="by")    
    comments = models.TextField(null=True, blank=True)
    submitted_date = models.DateField(auto_now_add=True)                      
    modified_date = models.DateField(auto_now=True)                           
    class Admin:
        list_display = ('comments', 'by',
            'submitted_date', 'modified_date')
        list_filter = ('submitted_date', 'by',)                               
        search_fields = ('comments', 'by',)

我的评论模型与错误跟踪计划中的我的票证模型相关联。我通过将注释放在admin.py的内联中来将注释连接到票证。问题现在变成:如何将ModelForm传递给TabularInline? TabularInline需要定义的模型。然而,一旦我将模型传递到我的内联中,传递模型形式就变得没有实际意义了。

admin.py

class CommentInline(admin.TabularInline):
    model = Comment
    form = CommentForm()
    search_fields = ['by', ]
    list_filter = ['by', ]
    fields = ('comments', 'by')
    readonly_fields=('by',)
    extra = 1

有没有人知道如何将ModelForm传递给TabularInline而不使用常规Model的字段覆盖ModelForm?提前谢谢!

1 个答案:

答案 0 :(得分:1)

不要在TabularInline子类中实例化表单:

    form = CommentForm