Skip to content

Commit

Permalink
Changed external photo field to non-group external photo field and ad…
Browse files Browse the repository at this point in the history
…ded group external photo field
  • Loading branch information
nnslgrs committed Sep 8, 2024
1 parent a0699ad commit cd5ab64
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions members/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ class PersonAdmin(admin.ModelAdmin):
('Quadrivium', {
'fields': (
"photo_video_consent_internal",
"photo_video_consent_external_group",
"photo_video_consent_external",
'person_id', 'is_student', ('iban', 'sepa_direct_debit', 'sepa_sign_date'),
'bhv_certificate', 'notes')
Expand Down
11 changes: 9 additions & 2 deletions members/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,19 @@ class Meta:
verbose_name="photos/videos consent internal",
help_text="Whether the person has given consent to share photos and videos of them internally with other members."
)
photo_video_consent_external_group = models.BooleanField(
null=True,
blank=True,
verbose_name='photos/videos consent external group',
help_text="Whether the person has given consent to share group photos and videos of them externally (on website, social media). With group is meant large groups, such as pictures of a full orchestra or choir during a concert."
)
photo_video_consent_external = models.BooleanField(
null=True,
blank=True,
verbose_name='photos/videos consent external',
help_text="Whether the person has given consent to share photos and videos of them externally (on website, social media)."
verbose_name='photos/videos consent external non-group',
help_text="Whether the person has given consent to share other photos and videos of them externally (on website, social media)."
)


is_student = models.BooleanField(null=True, blank=True)

Expand Down

0 comments on commit cd5ab64

Please sign in to comment.