diff options
author | luxagraf <sng@luxagraf.net> | 2017-11-09 14:02:16 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-11-09 14:02:16 -0600 |
commit | d42759bdcd6861039835f47153b621545bed334e (patch) | |
tree | bcd160b7e9cce9b7933f9fdd0babf901de67c213 /app/birds/admin.py | |
parent | ff0316afe40fa8572e787bdc2c5c69fd9c7ace65 (diff) |
fixed a couple small bugs
Diffstat (limited to 'app/birds/admin.py')
-rw-r--r-- | app/birds/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/birds/admin.py b/app/birds/admin.py index a8e3a0b..77ebc8a 100644 --- a/app/birds/admin.py +++ b/app/birds/admin.py @@ -21,8 +21,8 @@ class BirdAdmin(admin.ModelAdmin): class GalleryFormPlus(GalleryForm): def __init__(self, *args, **kwargs): - self.base_fields['seen_by'].widget = CustomSelectMultiple() super(GalleryFormPlus, self).__init__(*args, **kwargs) + self.base_fields['seen_by'].widget = CustomSelectMultiple() class Meta: model = BirdSighting |