graphite install
2015-09-07 本文已影响0人
1ef341143cfc
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__"