diff --git a/AKSubmission/forms.py b/AKSubmission/forms.py index 7a3234fdf2c59ef96bb945123d6b27c50e759f9b..b8402bbe72fa18edc114b29164868e6dc7aa2481 100644 --- a/AKSubmission/forms.py +++ b/AKSubmission/forms.py @@ -6,4 +6,17 @@ from AKModel.models import AK class AKForm(forms.ModelForm): class Meta: model = AK - fields = '__all__' + fields = ['name', + 'short_name', + 'link', + 'owners', + 'description', + 'category', + 'tags', + 'reso', + 'present', + 'requirements', + 'conflicts', + 'prerequisites', + 'notes', + 'event']