graphite install

作者: 1ef341143cfc | 来源:发表于2015-09-07 10:40 被阅读0次

    download django-tagging

    error:

    django.core.exceptions.ImproperlyConfigured: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is prohibited; form TagAdminForm needs updating.

    solution:
    #fields

    class Meta:
        model = Job
        fields = "__all__" 

    相关文章

      网友评论

        本文标题:graphite install

        本文链接:https://www.haomeiwen.com/subject/kodhcttx.html