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__"