do not show the elected box in assignment edit form

This commit is contained in:
Oskar Hahn 2011-09-03 12:26:14 +02:00
parent 0c931559a0
commit a32ed1d059
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class AssignmentForm(ModelForm):
class Meta:
model = Assignment
exclude = ('status', 'profile')
exclude = ('status', 'profile', 'elected')
class AssignmentRunForm(Form):