graphite install

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__" 
    原文作者:偶然1989
    原文地址: https://www.jianshu.com/p/eff251d971ff
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞