diff --git a/landing/templates/landing/our_team.html b/landing/templates/landing/our_team.html index 74f87ed..269a9a7 100644 --- a/landing/templates/landing/our_team.html +++ b/landing/templates/landing/our_team.html @@ -217,101 +217,26 @@ aria-labelledby="volunteers-tab" >
+ {% for commitee in commitees %}

- Meetup / Events + {{ commitee.name }}

-
-
-

- Marketing -

- -
-
-

- Public Training -

- -
-
-

- Engineering -

- -
-
-

- Content Creation -

-
+ {% endfor %}
diff --git a/organisation/admin.py b/organisation/admin.py index 58ebef3..0d7bb7d 100644 --- a/organisation/admin.py +++ b/organisation/admin.py @@ -3,5 +3,11 @@ from .models import Commitee, Volunteer + +class VolunteerAdmin(admin.ModelAdmin): + list_display = ("display_name", "commitee", "first_name", "last_name",) + list_filter = ("commitee",) + + admin.site.register(Commitee) -admin.site.register(Volunteer) +admin.site.register(Volunteer, VolunteerAdmin)