bornhack-website/src/people/views.py

8 lines
153 B
Python

from camps.models import Camp
from django.views.generic import ListView
class PeopleView(ListView):
template_name = "people.html"
model = Camp