Skip to content

Commit

Permalink
Merge pull request #93 from Danyc0/fix-missing-matrixid
Browse files Browse the repository at this point in the history
Add missing matrix ID in volunteer admin view
  • Loading branch information
johanvdw authored Jan 27, 2025
2 parents a37dbbd + 9e3af7f commit a3b0019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volunteers/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def mass_mail_volunteer(self, request, queryset):


class VolunteerAdmin(admin.ModelAdmin):
fields = ['user', 'full_name', 'email', 'mobile_nbr', 'private_staff_rating', 'private_staff_notes',
fields = ['user', 'full_name', 'email', 'mobile_nbr', 'matrix_id', 'private_staff_rating', 'private_staff_notes',
'penta_account_name']
# inlines = (VolunteerCategoryInline, VolunteerTaskInline)
list_display = ['full_name', 'mobile_nbr', 'matrix_id', 'email', 'private_staff_rating', 'private_staff_notes']
Expand Down

0 comments on commit a3b0019

Please sign in to comment.